OptimisationProblem/structures/Centers.h

20 lines
332 B
C
Raw Permalink Normal View History

2023-07-17 00:19:10 +02:00
#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();
};