HyprLink.h
资源名称:Netmanag.zip [点击查看]
上传用户:geanq888
上传日期:2007-01-03
资源大小:316k
文件大小:1k
源码类别:
Ftp客户端
开发平台:
Visual C++
- ////////////////////////////////////////////////////////////////
- // 1998 Microsoft Systems Journal
- // If this code works, it was written by Paul DiLascia.
- // If not, I don't know who wrote it.
- //
- // CHyperlink implements a simple text hyperlink
- //
- #ifndef _HYPRILNK_H
- #define _HYPRILNK_H
- //////////////////
- // Simple text hyperlink derived from CString
- //
- class CHyperlink : public CString {
- public:
- CHyperlink(LPCTSTR lpLink = NULL) : CString(lpLink) { }
- ~CHyperlink() { }
- const CHyperlink& operator=(LPCTSTR lpsz) {
- CString::operator=(lpsz);
- return *this;
- }
- operator LPCTSTR() {
- return CString::operator LPCTSTR();
- }
- HINSTANCE Navigate();
- };
- #endif