smallservview.h

来自「一个Symbian平台上的serverclient模型的简单示例」· C头文件 代码 · 共 29 行

H
29
字号
// SmallServView.h
//
// Copyright 05/03/2001 
//

#ifndef HEADER_SMALLSERVVIEW
#define HEADER_SMALLSERVVIEW

#include <coecntrl.h>

class CSmallServDocument;

//
// class CSmallServView
//
class CSmallServView : public CCoeControl 
    {
public:
    void ConstructL(const TRect& aRect, CSmallServDocument* aDoc);

private: // from CCoeControl
    void Draw(const TRect& /*aRect*/) const;

private: // data
    CSmallServDocument* iDoc; // document we're working with
    };

#endif // HEADER_SMALLSERVVIEW

⌨️ 快捷键说明

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