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

Last change on this file since 436 was 436, checked in by touze, 11 years ago

ajout de secteurs

File size: 549 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 sectorParameters 
13{
14  string geometry_;
15  vector<statements> sectors_;
16
17 public :
18 
19  sectorParameters();
20  ~sectorParameters() {;}
21 
22  void raz();
23  string FileOutputFlow() const;
24  void FileInput(ifstream&);
25  void InputRep(UAPNode* root);
26
27  void setSectors(const vector<statements>&);
28  vector<statements> getSectors() const;
29};
30#endif
Note: See TracBrowser for help on using the repository browser.