TicTacToe.cpp
上传用户:laixiong
上传日期:2007-03-11
资源大小:2994k
文件大小:1k
- /*
- * ==============================================================================
- * Name : TicTacToe.cpp
- * Part of : TicTacToe
- * Description :
- * Version :
- *
- * Copyright (c) 2005 Nokia Corporation.
- * ==============================================================================
- */
- // INCLUDE FILES
- #include "TicTacToeApplication.h"
- // ============================= EXPORTED FUNCTIONS ============================
- // -----------------------------------------------------------------------------
- // E32Dll
- // DLL entry point, return that everything is ok
- // -----------------------------------------------------------------------------
- //
- GLDEF_C TInt E32Dll(TDllReason /*aReason*/)
- {
- return KErrNone;
- }
- // -----------------------------------------------------------------------------
- // NewApplication
- // Create an application, and return a pointer to it
- // -----------------------------------------------------------------------------
- //
- EXPORT_C CApaApplication* NewApplication()
- {
- return (static_cast<CApaApplication*>(new CTicTacToeApplication));
- }
- // End of File