17 lines
294 B
C
17 lines
294 B
C
|
#pragma once
|
||
|
#include "Mission.h"
|
||
|
#include "Employee.h"
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
class Center
|
||
|
{
|
||
|
private:
|
||
|
std::vector<Employee*> employees;
|
||
|
public:
|
||
|
int id;
|
||
|
std::string name;
|
||
|
Center(int id, std::string name): id { id }, name { name }
|
||
|
{};
|
||
|
void addEmployee(Employee* employee);
|
||
|
};
|