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

📄 shapeinterface.h

📁 Symbian S60下使用ECom的例子,适合初学者理解ECom框架
💻 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 + -