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

📄 smallservview.h

📁 一个Symbian平台上的serverclient模型的简单示例
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -