HyprLink.h
上传用户:geanq888
上传日期:2007-01-03
资源大小:316k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////
  2. // 1998 Microsoft Systems Journal
  3. // If this code works, it was written by Paul DiLascia.
  4. // If not, I don't know who wrote it.
  5. //
  6. // CHyperlink implements a simple text hyperlink
  7. //
  8. #ifndef _HYPRILNK_H
  9. #define _HYPRILNK_H
  10. //////////////////
  11. // Simple text hyperlink derived from CString
  12. //
  13. class CHyperlink : public CString {
  14. public:
  15. CHyperlink(LPCTSTR lpLink = NULL) : CString(lpLink) { }
  16. ~CHyperlink() { }
  17. const CHyperlink& operator=(LPCTSTR lpsz) {
  18. CString::operator=(lpsz);
  19. return *this;
  20. }
  21. operator LPCTSTR() {
  22. return CString::operator LPCTSTR(); 
  23. }
  24. HINSTANCE Navigate();
  25. };
  26. #endif