?? simplegridapplication.cpp
字號:
/**
*
* @brief Definition of CSimpleGridApplication
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// INCLUDE FILES
// Class include
#include "SimpleGridApplication.h"
// User includes
#include "SimpleGridDocument.h" // CSimpleGridDocument
// ================= MEMBER FUNCTIONS =======================
/**
* @brief From CApaApplication, returns the application's UID (KUidSimpleGrid).
* @return The value of KUidSimpleGrid.
*/
TUid CSimpleGridApplication::AppDllUid() const
{
return KUidSimpleGrid;
}
/**
* @brief From CApaApplication, creates a CSimpleGridDocument object.
* @return A pointer to the created document object.
*/
CApaDocument* CSimpleGridApplication::CreateDocumentL()
{
return CSimpleGridDocument::NewL(*this);
}
// ================= OTHER EXPORTED FUNCTIONS ==============
/**
* Constructs a CSimpleGridApplication.
* @return A pointer to the application object.
*/
EXPORT_C CApaApplication* NewApplication()
{
return new CSimpleGridApplication;
}
/**
* @brief This is the entry point function for this Series 60 App
* @return KErrNone No error
*/
GLDEF_C TInt E32Dll(TDllReason)
{
return KErrNone;
}
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -