📄 mylistboxapp.cpp
字号:
// --------------------------------------------------------------------------
// MyListBoxApp.cpp
//
// Copyright 2005, Antony Pranata
// http://www.antonypranata.com
//
// An application class for custom list box example.
// --------------------------------------------------------------------------
// INCLUDE FILES
#include "MyListBoxApp.h"
#include "MyListBoxDocument.h"
// MEMBER FUNCTIONS
TUid CMyListBoxApp::AppDllUid() const
{
return KUidMyListBox;
}
CApaDocument* CMyListBoxApp::CreateDocumentL()
{
return CMyListBoxDocument::NewL( *this );
}
// OTHER EXPORTED FUNCTIONS
EXPORT_C CApaApplication* NewApplication()
{
return new CMyListBoxApp;
}
GLDEF_C TInt E32Dll( TDllReason )
{
return KErrNone;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -