20 lines
332 B
C++
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();
|
|
}; |