chxavcontrol.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. /************************************************************************
  2.  * chxavcontrol.h
  3.  * --------------
  4.  *
  5.  * Synopsis:
  6.  * Base class for custom controls used herein.
  7.  *
  8.  * Target:
  9.  * Symbian OS
  10.  *
  11.  *
  12.  * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
  13.  *
  14.  ************************************************************************/
  15. #ifndef _chxavcontrol_h_
  16. #define _chxavcontrol_h_
  17. // class CHXAvControl...
  18. class CHXAvControl
  19. : public CCoeControl
  20. {
  21. public:
  22. explicit CHXAvControl(TInt id = -1) : m_id(id) {}
  23. void SetID(TInt id) { m_id = id; }
  24. TInt GetID() const { return m_id; }
  25. private:
  26. TInt m_id;
  27. };
  28. #endif // _chxavcontrol_h_