chxavcontrol.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
- /************************************************************************
- * chxavcontrol.h
- * --------------
- *
- * Synopsis:
- * Base class for custom controls used herein.
- *
- * Target:
- * Symbian OS
- *
- *
- * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- ************************************************************************/
- #ifndef _chxavcontrol_h_
- #define _chxavcontrol_h_
- // class CHXAvControl...
- class CHXAvControl
- : public CCoeControl
- {
- public:
- explicit CHXAvControl(TInt id = -1) : m_id(id) {}
- void SetID(TInt id) { m_id = id; }
- TInt GetID() const { return m_id; }
- private:
- TInt m_id;
- };
- #endif // _chxavcontrol_h_