skinexampleapp.cpp

来自「symbian皮肤」· C++ 代码 · 共 68 行

CPP
68
字号
/* ============================================================================
*  Name     : CSkinExampleApp from SkinExampleApp.cpp
*  Part of  : SkinExample
*  Created  : 18.05.2006 by li yongfei
* 
*  Implementation notes:
*
*     Initial content was generated by Series 60 Application Wizard.
*  Version  :
*  WebSite: http://www.symbianer.com
*  Copyright: n-office@163.com
* ============================================================================
*/

// INCLUDE FILES
#include    "SkinExampleApp.h"
#include    "SkinExampleDocument.h"

// ================= MEMBER FUNCTIONS =======================

// ---------------------------------------------------------
// CSkinExampleApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CSkinExampleApp::AppDllUid() const
{
  return KUidSkinExample;
}


// ---------------------------------------------------------
// CSkinExampleApp::CreateDocumentL()
// Creates CSkinExampleDocument object
// ---------------------------------------------------------
//
CApaDocument* CSkinExampleApp::CreateDocumentL()
{
  return CSkinExampleDocument::NewL( *this );
}

// ================= OTHER EXPORTED FUNCTIONS ==============
//
// ---------------------------------------------------------
// NewApplication() 
// Constructs CSkinExampleApp
// Returns: created application object
// ---------------------------------------------------------
//
EXPORT_C CApaApplication* NewApplication()
{
  return new CSkinExampleApp;
}

// ---------------------------------------------------------
// E32Dll(TDllReason) 
// Entry point function for EPOC Apps
// Returns: KErrNone: No error
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
{
  return KErrNone;
}

// End of File  

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?