chxavurlinfo.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
- /****************************************************************************
- * chxavurlinfo.h
- * --------------
- *
- * Synopsis:
- * Contains the declaration of the CHXAvURLInfo class. It's basically
- * a neat way to keep track of a url and it's corresponding title.
- *
- *
- * Target:
- * Symbian OS
- *
- *
- * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- *****************************************************************************/
-
- #ifndef _chxavurlinfo_h_
- #define _chxavurlinfo_h_
- // Symbian includes...
- #include <e32base.h>
- // Helix includes...
- #include "unkimp.h"
- #include "ihxpckts.h"
- #include "hxstring.h"
- #include "hxurl.h"
- #include "hxwintyp.h"
- #include "hxcom.h"
- #include "hxcomm.h"
- #include "hxmon.h"
- class CHXAvURLInfo
- {
- public:
- CHXAvURLInfo(const CHXString& url, const CHXString& title);
- CHXAvURLInfo(const TDesC& url, const TDesC& title);
- virtual ~CHXAvURLInfo();
- const TDesC& Title() const;
- const TDesC& URL() const;
- private:
- HBufC* m_url;
- HBufC* m_title;
- };
- //typedef CHXSmartPtr<CHXAvURLInfo> CHXAvURLInfoPtr
- #endif // _chxavurlinfo_h_