source: PSPA/Interface_Web/trunk/pspaWT/sources/controler/include/elementDrift.h

Last change on this file was 488, checked in by lemeur, 10 years ago

lecture fichier sauvegarde AML

File size: 844 bytes
Line 
1#ifndef DRIFTDEFINITION_SEEN
2#define DRIFTDEFINITION_SEEN
3
4#include <string>
5#include "abstractElement.h"
6
7using namespace std;
8
9class elementDrift : public abstractElement
10{
11 
12  void setDefaultValues();
13  void setDefaults();
14   
15 public:
16   
17  elementDrift();
18  ~elementDrift() {;}
19   
20  virtual string* getParametersString() const;
21  virtual void setParametersString(string* param);
22  virtual vector< pair<string, vector<string> > > parametersToSoftware () const;
23  //    virtual  string parmelaOutputFlow() const; 
24  //    virtual string transportOutputFlow() const;
25   
26  //  virtual string FileOutputFlow() const;
27  //  virtual void FileInput(ifstream& ifs);
28  virtual void InputRep(UAPNode* root);
29  virtual void FileAMLInput(UAPNode* entree);
30
31    /** return a string with all parameters and value */
32    string print();
33};
34#endif
Note: See TracBrowser for help on using the repository browser.