AnimatLab  2
Test
ArrayChart.h
Go to the documentation of this file.
1 
7 #pragma once
8 
9 namespace AnimatSim
10 {
11  namespace Charting
12  {
19  class ANIMAT_PORT ArrayChart : public DataChart
20  {
21  protected:
23  CStdFPoint m_vArraySize;
24 
25  public:
26  ArrayChart();
27  virtual ~ArrayChart();
28 
29  static ArrayChart *CastToDerived(AnimatBase *lpBase) {return static_cast<ArrayChart*>(lpBase);}
30 
31  virtual std::string Type();
32  virtual void CurrentRow(long iVal);
33 
34  virtual void Initialize();
35  virtual void ReInitialize();
36  virtual void StepSimulation();
37  virtual void Load(CStdXml &oXml);
38  };
39 
40  } //Charting
41 } //AnimatSim
Root namespace for the base simulation library for AnimatLab.
Data chart base class.
Definition: DataChart.h:31
Animat base class.
Definition: AnimatBase.h:36
CStdFPoint m_vArraySize
Size of the 3-D array of data.
Definition: ArrayChart.h:23