ShapeApp.h
资源名称:Shapes.zip [点击查看]
上传用户:wenshuihe
上传日期:2007-01-14
资源大小:10k
文件大小:1k
源码类别:
BREW编程
开发平台:
Visual C++
- #if !defined(ShapeApp_h)
- #define ShapeApp_h
- #include "AEEModGen.h" // Module interface definitions
- #include "AEEAppGen.h" // Applet interface definitions
- class CList; // forward declaration
- class ShapeApp : public AEEApplet
- {
- public:
- static boolean HandleEvent(ShapeApp * pApp, AEEEvent eCode, uint16 wparam, uint32 dwParam);
- static boolean initAppData(IApplet * pIApplet);
- static void freeAppData(ShapeApp * pApp);
- protected:
- void freeData();
- boolean onEvent(AEEEvent evt, uint16 wParam, uint32 dwParam);
- boolean initData();
- private:
- CList *m_pShapes;
- };
- #endif