// Read the documentation to learn more about C++ code generator // versioning. // %X% %Q% %Z% %W% #ifndef PLOTMODEL_H #define PLOTMODEL_H 1 // PlotCommand #include struct PlotGroup; class PlotSettings; struct StandardLabels; class PlotModel : public PlotCommand //## Inherits: %4B3A73B302D6 { public: PlotModel (const string& name); virtual ~PlotModel(); // If not overridden, this does nothing. virtual void makeLabels (const PlotSettings& settings, StandardLabels& labels) const; virtual bool requestNewXoption (const PlotSettings& settings, XaxisMode& newOption) const; virtual void processAdditionalParams (const StringArray& args, const IntegerArray& argIndices); virtual void cleanup(); // Additional Public Declarations protected: // Additional Protected Declarations private: PlotModel(const PlotModel &right); PlotModel & operator=(const PlotModel &right); // Once the raw data has been gathered into PlotGroup // objects, this is the function that performs the various // mathematical operations specific to each PlotCommand // subclass. virtual void manipulate (std::vector& plotGroups, const PlotSettings& settings); // Determines plot-time range settings based on current // setplot settings and PlotGroup data. virtual void setRanges (std::vector& plotGroups, const PlotSettings& settings); // Additional Private Declarations private: //## implementation // Additional Implementation Declarations }; // Class PlotModel #endif