2019-08-12 16:25:03 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "Production.h"
|
|
|
|
#include "Need.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
class Career
|
|
|
|
{
|
|
|
|
public:
|
2019-08-22 15:56:53 +00:00
|
|
|
shared_ptr<Production> get_production(void);
|
2019-08-12 16:25:03 +00:00
|
|
|
|
|
|
|
private:
|
2019-08-12 16:52:11 +00:00
|
|
|
// The prodution which this career makes.
|
2019-08-12 16:25:03 +00:00
|
|
|
shared_ptr<Production> pdt;
|
2019-08-12 16:52:11 +00:00
|
|
|
// Produtions which this career needed.
|
2019-08-12 16:25:03 +00:00
|
|
|
shared_ptr<Need> ned;
|
|
|
|
|
|
|
|
};
|
|
|
|
|