Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
chxavurlinfo.h
Package: helix.src.0812.rar [view]
Upload User: zhongxx05
Upload Date: 2007-06-06
Package Size: 33641k
Code Size: 1k
Category:
Symbian
Development Platform:
C/C++
- /****************************************************************************
- * 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_