TetrisApplication.cpp
上传用户:snevogroup
上传日期:2008-06-06
资源大小:432k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. #include "TetrisDocument.h"
  2. #include "TetrisApplication.h"
  3. // UID for the application, this should correspond to the uid defined in the mmp file
  4. static const TUid KUidTetrisApp = {0x1027434D};
  5. CApaDocument* CTetrisApplication::CreateDocumentL()
  6.     {  
  7.     // Create an HelloWorld document, and return a pointer to it
  8.     CApaDocument* document = CTetrisDocument::NewL(*this);
  9.     return document;
  10.     }
  11. TUid CTetrisApplication::AppDllUid() const
  12.     {
  13.     // Return the UID for the HelloWorld application
  14.     return KUidTetrisApp;
  15.     }