You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
471 B
C
26 lines
471 B
C
|
1 month ago
|
///////////////////////////////////////////////////////////////////////
|
||
|
|
//PointSeriesManager.h
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
class CPointSeries;
|
||
|
|
class CGDFSegment;
|
||
|
|
class POINTSERIESID;
|
||
|
|
|
||
|
|
class CPointSeriesManager
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CPointSeriesManager();
|
||
|
|
~CPointSeriesManager();
|
||
|
|
//Attributes
|
||
|
|
private:
|
||
|
|
CTypedPtrArray<CPtrArray,CPointSeries*> m_seriesarray;
|
||
|
|
|
||
|
|
//Operations
|
||
|
|
public:
|
||
|
|
int GetSeriesCount();
|
||
|
|
CPointSeries* GetSeries(POINTSERIESID* id);
|
||
|
|
CPointSeries* NewSeries();
|
||
|
|
void Clear();
|
||
|
|
};
|