chxavurlinfo.h

来自「symbian 下的helix player源代码」· C头文件 代码 · 共 54 行

H
54
字号
/****************************************************************************
 * 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_

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?