TicTacToeApplication.cpp
上传用户:laixiong
上传日期:2007-03-11
资源大小:2994k
文件大小:2k
源码类别:

Symbian

开发平台:

C/C++

  1. /*
  2. * ==============================================================================
  3. *  Name        : TicTacToeApplication.cpp
  4. *  Part of     : TicTacToe
  5. *  Description : 
  6. *  Version     : 
  7. *
  8. *  Copyright (c) 2005 Nokia Corporation.
  9. * ==============================================================================
  10. */
  11. // INCLUDE FILES
  12. #include "TicTacToeDocument.h"
  13. #include "TicTacToeApplication.h"
  14. // CONSTANTS
  15. // UID for the application; this should correspond to the uid defined in the mmp file
  16. const TUid KUidTicTacToeApp = { 0xE02753ED }; 
  17. // ============================ MEMBER FUNCTIONS ===============================
  18. // -----------------------------------------------------------------------------
  19. // CTicTacToeApplication::CreateDocumentL
  20. // Create a CApaDocument object and return a pointer to it.
  21. // -----------------------------------------------------------------------------
  22. //
  23. CApaDocument* CTicTacToeApplication::CreateDocumentL()
  24.     {  
  25.     // Create an HelloWorldPlus document, and return a pointer to it
  26.     return (static_cast<CApaDocument*>(CTicTacToeDocument::NewL(*this)));
  27.     }
  28. // -----------------------------------------------------------------------------
  29. // CTicTacToeApplication::AppDllUid
  30. // Return the application DLL UID value.
  31. // -----------------------------------------------------------------------------
  32. //
  33. TUid CTicTacToeApplication::AppDllUid() const
  34.     {
  35.     // Return the UID for the HelloWorldPlus application
  36.     return KUidTicTacToeApp;
  37.     }
  38. //  End of File