basics.h
来自「Example demonstrates a simple use of the」· C头文件 代码 · 共 32 行
H
32 行
// Basics.h
//
// Copyright (c) 2000 Symbian Ltd. All rights reserved.
// This header file contains the class definitions and local
//
// function prototypes used by the example
const TUid KExampleClipUid={2306};
class CClassA : public CBase
{
public :
CClassA();
void ExternalizeL(RWriteStream& aStream) const;
void InternalizeL(RReadStream& aStream);
public :
TBuf<32> iBuffer;
TInt iXA;
TUint iYA;
};
LOCAL_C void doCopyL();
LOCAL_C void doPasteL();
LOCAL_C void doShow(const TDesC& aHeading,const CClassA* anItem);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?