20 lines
188 B
C++
20 lines
188 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "Production.h"
|
|
#include "Need.h"
|
|
|
|
using namespace std;
|
|
|
|
class Career
|
|
{
|
|
public:
|
|
|
|
private:
|
|
shared_ptr<Production> pdt;
|
|
shared_ptr<Need> ned;
|
|
|
|
};
|
|
|