OptimisationProblem/structures/Centers.h
2023-07-17 01:19:10 +03:00

20 lines
332 B
C++

#pragma once
#include "Center.h"
#include <string>
#include <vector>
#include <fstream>
#include <sstream>
#include <iostream>
class Centers
{
private:
std::vector<Center*> centers;
public:
Centers(const char* basePath): Centers(std::string(basePath))
{};
Centers(std::string basePath);
Center* get(int id);
void print();
};