ShapeApp.h
上传用户:wenshuihe
上传日期:2007-01-14
资源大小:10k
文件大小:1k
源码类别:

BREW编程

开发平台:

Visual C++

  1. #if !defined(ShapeApp_h)
  2. #define ShapeApp_h
  3. #include "AEEModGen.h"          // Module interface definitions
  4. #include "AEEAppGen.h"          // Applet interface definitions
  5. class CList; // forward declaration
  6. class ShapeApp : public AEEApplet
  7. {
  8. public:
  9. static boolean HandleEvent(ShapeApp * pApp, AEEEvent eCode, uint16 wparam, uint32 dwParam);
  10. static boolean initAppData(IApplet * pIApplet);
  11. static void freeAppData(ShapeApp * pApp);
  12. protected:
  13. void freeData();
  14. boolean onEvent(AEEEvent evt, uint16 wParam, uint32 dwParam);
  15. boolean initData();
  16. private:
  17. CList *m_pShapes;
  18. };
  19. #endif