source: PSPA/Interface_Web/trunk/pspaWT/include/elementDrift.h @ 58

Last change on this file since 58 was 50, checked in by lemeur, 12 years ago

implementation d'une persistence

File size: 526 bytes
Line 
1#ifndef DRIFTDEFINITION_SEEN
2#define DRIFTDEFINITION_SEEN
3#include <string>
4
5#include "abstractElement.h"
6
7using namespace std;
8
9class elementDrift : public abstractElement
10{
11
12  //  int nbParam_;
13  //  string* parametersString_;
14
15 public:
16
17  elementDrift();
18
19
20  ~elementDrift() {;}
21
22  virtual string* getParametersString() const;
23
24  virtual void setParametersString(string* param);
25
26  virtual  string parmelaOutputFlow() const;
27
28  virtual string FileOutputFlow() const;
29
30  virtual void FileInput(ifstream& ifs);
31
32};
33
34
35
36#endif
Note: See TracBrowser for help on using the repository browser.