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