#pragma once #include #include #include using namespace std; class Production { public: float get_value(void); string get_name(void); private: // Raw material to make this production. vector> material; // Base value of this prodution. float value; // Name of this production. string name; };