lark_rtptapp.cpp
来自「symbian平台S60_2nd_FP2_SC rtp实现」· C++ 代码 · 共 67 行
CPP
67 行
/* ============================================================================
* Name : CLark_RtpTApp from Lark_RtpTApp.cpp
* Part of : Lark_RtpT
* Created : 08.10.2007 by
*
* Implementation notes:
*
* Initial content was generated by Series 60 Application Wizard.
* Version :
* Copyright:
* ============================================================================
*/
// INCLUDE FILES
#include "Lark_RtpTApp.h"
#include "Lark_RtpTDocument.h"
// ================= MEMBER FUNCTIONS =======================
// ---------------------------------------------------------
// CLark_RtpTApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CLark_RtpTApp::AppDllUid() const
{
return KUidLark_RtpT;
}
// ---------------------------------------------------------
// CLark_RtpTApp::CreateDocumentL()
// Creates CLark_RtpTDocument object
// ---------------------------------------------------------
//
CApaDocument* CLark_RtpTApp::CreateDocumentL()
{
return CLark_RtpTDocument::NewL( *this );
}
// ================= OTHER EXPORTED FUNCTIONS ==============
//
// ---------------------------------------------------------
// NewApplication()
// Constructs CLark_RtpTApp
// Returns: created application object
// ---------------------------------------------------------
//
EXPORT_C CApaApplication* NewApplication()
{
return new CLark_RtpTApp;
}
// ---------------------------------------------------------
// 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 + -
显示快捷键?