#pragma once #include "Employee.h" #include "Centers.h" #include #include #include #include #include // Employee registry class Employees { private: std::vector employees; public: Employees(const char* basePath, Centers& centers): Employees(std::string(basePath), centers) {}; Employees(std::string basePath, Centers& centers); std::vector::iterator begin() { return employees.begin(); } std::vector::iterator end() { return employees.end(); } };