chxavfolderdisplayinfo.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
- /************************************************************************
- * chxavfolderdisplayinfo.h
- * ------------------------
- *
- * Synopsis:
- *
- * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- ************************************************************************/
- #ifndef _chxavfolderdisplayinfo_h_
- #define _chxavfolderdisplayinfo_h_
- // class CHXAvFolderDisplayInfo
- class CHXAvFolderDisplayInfo
- {
- public:
- // ctor and dtor
- CHXAvFolderDisplayInfo();
- virtual ~CHXAvFolderDisplayInfo();
- private:
- // disallow assignment and copy
- CHXAvFolderDisplayInfo(const CHXAvFolderDisplayInfo& rhs);
- CHXAvFolderDisplayInfo& operator=(const CHXAvFolderDisplayInfo& rhs);
- public:
- // methods
- const TDesC& GetDisplayText() const;
- void SetFolderPathL(const TDesC& fullFolderPath);
- private:
- // implementation
- void InitL();
- private:
- // data
- TPtrC m_displayText;
- };
- ///////////////////////////////////
- //
- inline
- const TDesC& CHXAvFolderDisplayInfo::GetDisplayText() const
- {
- return m_displayText;
- }
- #endif // _chxavfolderdisplayinfo_h_