123456789101112131415161718192021222324252627282930313233343536373839 |
- #if !defined(AFX_VCDATAPOINTS_H__2CF6B5EB_E6C5_4A4E_97F8_6B471C5B73A7__INCLUDED_)
- #define AFX_VCDATAPOINTS_H__2CF6B5EB_E6C5_4A4E_97F8_6B471C5B73A7__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- #include "vcdatapoint.h"
- class CVcDataPoints : public COleDispatchDriver
- {
- public:
- CVcDataPoints() {}
- CVcDataPoints(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
- CVcDataPoints(const CVcDataPoints& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
- public:
- public:
- long GetCount();
- CVcDataPoint GetItem(short Index);
- };
- #endif
|