source: PSPA/Interface_Web/trunk/pspaWT/sources/controler/include/sectorParameters.h @ 455

Last change on this file since 455 was 455, checked in by garnier, 11 years ago

grosse modification pour intégrer les sections

File size: 600 bytes
Line 
1#ifndef SECTORPARAMETERS_SEEN
2#define SECTORPARAMETERS_SEEN
3
4#include <string>
5#include <iostream>
6#include "UAP/UAPNode.hpp"
7
8using namespace std;
9
10typedef pair<string, vector<string> > statements;
11
12class sector;
13
14class sectorParameters 
15{
16  string geometry_;
17  vector<statements> sectorsStatements_;
18
19 public :
20 
21  sectorParameters(sector*);
22  ~sectorParameters() {;}
23 
24  void raz();
25  string FileOutputFlow() const;
26  void FileInput(ifstream&);
27  void InputRep(UAPNode* root);
28
29  void setSectors(const vector<statements>&);
30  vector<statements> getSectors() const;
31  sector* sector_;
32};
33#endif
Note: See TracBrowser for help on using the repository browser.