12345678910111213141516171819202122232425262728293031323334353637 |
- #if !defined(AFX_VCWEIGHTING_H__A4A8FEAF_A7A6_4BE3_B551_E1013B3515BD__INCLUDED_)
- #define AFX_VCWEIGHTING_H__A4A8FEAF_A7A6_4BE3_B551_E1013B3515BD__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class CVcWeighting : public COleDispatchDriver
- {
- public:
- CVcWeighting() {}
- CVcWeighting(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
- CVcWeighting(const CVcWeighting& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
- public:
- public:
- long GetBasis();
- void SetBasis(long nNewValue);
- long GetStyle();
- void SetStyle(long nNewValue);
- void Set(long Basis, long Style);
- };
- #endif
|