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