// Read the documentation to learn more about C++ code generator // versioning. // %X% %Q% %Z% %W% #ifndef PLOTBACKGROUND_H #define PLOTBACKGROUND_H 1 // PlotCommand #include struct PlotGroup; class PlotSettings; struct StandardLabels; class PlotBackground : public PlotCommand //## Inherits: %4B1ED52400C6 { public: PlotBackground(); virtual ~PlotBackground(); // If not overridden, this does nothing. virtual void makeLabels (const PlotSettings& settings, StandardLabels& labels) const; // Additional Public Declarations protected: // Additional Protected Declarations private: PlotBackground(const PlotBackground &right); PlotBackground & operator=(const PlotBackground &right); // Determines plot-time range settings based on current // setplot settings and PlotGroup data. virtual void setRanges (std::vector& plotGroups, const PlotSettings& settings); // 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); // Additional Private Declarations private: //## implementation // Additional Implementation Declarations }; // Class PlotBackground #endif