ccurvepainter.h

来自「《脚本驱动的应用软件开发方法与实践》源码」· C头文件 代码 · 共 29 行

H
29
字号
//
// CCurvePainter.h
//
// --------------------------------------------------------
// A Practical Guide to Script-Driven Software Development
// Author: Qiming Lu                        Date: 6/1/2006
// MSN Messager: luqiming26@hotmail.com
// MSN Blog: http://spaces.msn.com/jemylu
// --------------------------------------------------------

#ifndef __H_CCurvePainter__
#define __H_CCurvePainter__

#include "IDispatchImpl.h"
#include "curves_h.h"

class CCurvePainter : public IDispatchImpl<CCurvePainter
										, ICurvePainter
										, &IID_ICurvePainter>
{
public:
	CCurvePainter(ITypeLib* ptl);
	~CCurvePainter();

	// APIs exposed to scripts
	STDMETHODIMP Result(long i, double x, double y);
};

#endif // __H_CCurvePainter__

⌨️ 快捷键说明

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