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

Symbian

开发平台:

C/C++

  1. /*
  2. * ==============================================================================
  3. *  Name        : TicTacToeApplication.h
  4. *  Part of     : TicTacToe
  5. *  Interface   : 
  6. *  Description : 
  7. *  Version     : 
  8. *
  9. *  Copyright (c) 2005 Nokia Corporation.
  10. * ==============================================================================
  11. */
  12. #ifndef __TICTACTOE_APPLICATION_H__
  13. #define __TICTACTOE_APPLICATION_H__
  14. //  INCLUDES
  15. #include <aknapp.h>
  16. // CLASS DECLARATION
  17. /**
  18. * An instance of CTicTacToeApplication is the application part of the AVKON
  19. * application framework for the TicTacToe application.
  20. */
  21. class CTicTacToeApplication : public CAknApplication
  22.     {
  23.     public:  // from CApaApplication
  24.         /**
  25.         * Return the application DLL UID value.
  26.         * @result the UID of this Application/Dll
  27.         */
  28.         TUid AppDllUid() const;
  29.     protected: // from CEikApplication
  30.         /**
  31.         * Create a CApaDocument object and return a pointer to it.
  32.         * @result a pointer to the created document
  33.         */
  34.         CApaDocument* CreateDocumentL();
  35.     };
  36. #endif // __TICTACTOE_APPLICATION_H__
  37. // End of File