📄 mydll.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -