mydll.h
来自「Developing.Software.for.Symbian.OS 书籍配套源」· C头文件 代码 · 共 32 行
H
32 行
// PolymorphicDLL1.h
//
// Copyright (c) 2000 Symbian Ltd. All rights reserved.
#ifndef __PolymorphicDLL1_H
#define __PolymorphicDLL1_H
// get definition of base class
#include <flogger.h>
#include <e32base.h>
class CMyClass : public CBase
{
public:
// constructor support
IMPORT_C CMyClass(void);
// IMPORT_C void DoSomething();
// IMPORT_C void FuncA();
IMPORT_C void FuncB();
IMPORT_C void FuncC();
IMPORT_C void FuncD();
IMPORT_C void FuncE();
public:
RFileLogger iLog;
TInt h;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?