Removing _plot_node member of Plot.

This commit is contained in:
Patrick Shriwise 2018-10-29 10:35:22 -05:00
parent 1cebc3e9a2
commit 7a35ac8b5e
2 changed files with 64 additions and 67 deletions

View file

@ -66,18 +66,18 @@ public:
// Methods
private:
void set_id();
void set_type();
void set_output_path();
void set_bg_color();
void set_basis();
void set_origin();
void set_width();
void set_universe();
void set_default_colors();
void set_user_colors();
void set_meshlines();
void set_mask();
void set_id(pugi::xml_node plot_node);
void set_type(pugi::xml_node plot_node);
void set_output_path(pugi::xml_node plot_node);
void set_bg_color(pugi::xml_node plot_node);
void set_basis(pugi::xml_node plot_node);
void set_origin(pugi::xml_node plot_node);
void set_width(pugi::xml_node plot_node);
void set_universe(pugi::xml_node plot_node);
void set_default_colors(pugi::xml_node plot_node);
void set_user_colors(pugi::xml_node plot_node);
void set_meshlines(pugi::xml_node plot_node);
void set_mask(pugi::xml_node plot_node);
// Members
public:
@ -95,7 +95,6 @@ public:
RGBColor not_found; //!< Plot background color
std::vector<RGBColor> colors; //!< Plot colors
std::string path_plot; //!< Plot output filename
pugi::xml_node _plot_node;
};
//===============================================================================