#pragma once #include #include "Production.h" #include "Need.h" using namespace std; class Career { public: shared_ptr get_production(void); private: // The prodution which this career makes. shared_ptr pdt; // Produtions which this career needed. shared_ptr ned; };