📄 shapeinterface.h
字号:
#ifndef __SHAPEINTERFACE_H__
#define __SHAPEINTERFACE_H__
#include <e32base.h>
#include <ECom.h>
// Foware declared...
class CWindowGc;
/**
*
* @class CShape ShapeInterface.h
* @brief This is the CShape interface definition class
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CShape : public CBase
{
public:
static CShape* NewL();
static CShape* NewL (const TDesC8& aMatch);
virtual ~CShape();
virtual void Draw (CWindowGc& aGraphicsContext) const = 0;
private:
TUid iDestructorIDKey;
};
// This includes the implementation of the instantiation functions and
// destructor
#include "shapeinterface.inl"
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -