1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #if !defined(AFX_VCPLOTBASE_H__3A8505D1_8DD5_4AB6_A9AC_556924B22A50__INCLUDED_)
- #define AFX_VCPLOTBASE_H__3A8505D1_8DD5_4AB6_A9AC_556924B22A50__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class CVcBrush;
- class CVcPen;
- class CVcPlotBase : public COleDispatchDriver
- {
- public:
- CVcPlotBase() {}
- CVcPlotBase(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
- CVcPlotBase(const CVcPlotBase& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
- public:
- public:
- float GetBaseHeight();
- void SetBaseHeight(float newValue);
- CVcBrush GetBrush();
- CVcPen GetPen();
- };
- #endif
|