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