⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mydll.h

📁 S60 Dll development source code
💻 H
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */


#ifndef __MYDLL_H__
#define __MYDLL_H__

// INCLUDES
#include <e32base.h>
#include "badesca.h"
class CMyClass : public CBase
	{
		public:
			IMPORT_C static CMyClass* NewL();
			IMPORT_C static CMyClass* NewLC();
			
			IMPORT_C TInt GetItemTextArray(CDesCArray* itemList);
			
			CMyClass();
			~CMyClass();
		private:
			void ConstructL();
			void PrivateMethod();
	} ;


#endif // __MYDLL_H__

// End of File

⌨️ 快捷键说明

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