// Read the documentation to learn more about C++ code generator // versioning. // %X% %Q% %Z% %W% #ifndef PLOTINSENSITIVITY_H #define PLOTINSENSITIVITY_H 1 // PlotCommand #include struct PlotGroup; class PlotSettings; struct StandardLabels; class PlotInsensitivity : public PlotCommand //## Inherits: %4B44AA1C0357 { public: PlotInsensitivity(); virtual ~PlotInsensitivity(); // If not overridden, this does nothing. virtual void makeLabels (const PlotSettings& settings, StandardLabels& labels) const; virtual bool requestNewXoption (const PlotSettings& settings, XaxisMode& newOption) const; // Additional Public Declarations protected: // Additional Protected Declarations private: PlotInsensitivity(const PlotInsensitivity &right); PlotInsensitivity & operator=(const PlotInsensitivity &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 PlotInsensitivity #endif