TetrisApplication.cpp
上传用户:snevogroup
上传日期:2008-06-06
资源大小:432k
文件大小:1k
- #include "TetrisDocument.h"
- #include "TetrisApplication.h"
- // UID for the application, this should correspond to the uid defined in the mmp file
- static const TUid KUidTetrisApp = {0x1027434D};
- CApaDocument* CTetrisApplication::CreateDocumentL()
- {
- // Create an HelloWorld document, and return a pointer to it
- CApaDocument* document = CTetrisDocument::NewL(*this);
- return document;
- }
- TUid CTetrisApplication::AppDllUid() const
- {
- // Return the UID for the HelloWorld application
- return KUidTetrisApp;
- }