Going back to PlotBase. Makes more sense as Plot inherits from it.

This commit is contained in:
Patrick Shriwise 2019-03-08 09:23:33 -06:00
parent fbd0e5e4c5
commit 1e7271d0b4
3 changed files with 28 additions and 28 deletions

View file

@ -73,7 +73,7 @@ enum class PlotColorBy {
//===============================================================================
// Plot class
//===============================================================================
struct Slice {
struct PlotBase {
// Members
Position origin_; //!< Plot origin in geometry
Position width_; //!< Plot width in geometry
@ -82,7 +82,7 @@ struct Slice {
int level_; //!< Plot universe level
};
class Plot : public Slice
class Plot : public PlotBase
{
public: