123456789101112131415161718192021222324252627282930313233343536 |
- #if !defined(AFX_VCTICK_H__8DDA4853_A0C0_4783_944C_042E9D4353D8__INCLUDED_)
- #define AFX_VCTICK_H__8DDA4853_A0C0_4783_944C_042E9D4353D8__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class CVcTick : public COleDispatchDriver
- {
- public:
- CVcTick() {}
- CVcTick(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
- CVcTick(const CVcTick& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
- public:
- public:
- float GetLength();
- void SetLength(float newValue);
- long GetStyle();
- void SetStyle(long nNewValue);
- };
- #endif
|