mylistboxapp.cpp

来自「MyListBox Symbian 3rd custom control.」· C++ 代码 · 共 39 行

CPP
39
字号
// --------------------------------------------------------------------------
// 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 + =
减小字号Ctrl + -
显示快捷键?