#ifndef SECTORPARAMETERS_SEEN #define SECTORPARAMETERS_SEEN #include #include #include "UAP/UAPNode.hpp" using namespace std; typedef pair > statements; class sector; class sectorParameters { string geometry_; vector sectorsStatements_; public : sectorParameters(sector*); ~sectorParameters() {;} void raz(); string FileOutputFlow() const; void FileInput(ifstream&); void InputRep(UAPNode* root); void setSectors(const vector&); vector getSectors() const; sector* sector_; }; #endif