/* * QSeisXMLParser_plotcurve.hpp * * Created on: Apr 5, 2011 * Author: bierbach */ #ifndef QSEISXMLPARSER_PLOTCURVE_HPP_ #define QSEISXMLPARSER_PLOTCURVE_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include class plottype; class plotcurve{ public: plotcurve(std::string name_pc,std::string type_pc,std::string suffix_pc,std::string color_pc,int column_pc); ~plotcurve(); void set_values(std::string,std::string,std::string,int); std::string get_name(); std::string get_type(); std::string get_suffix(); std::string get_color(); int get_column(); private: //?> name of the plot std::string name; std::string type; std::string suffix; std::string color; int column; plotcurve(const plotcurve &ref); }; #endif /* QSEISXMLPARSER_PLOTCURVE_HPP_ */