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

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

Changement de la couleur des sections selectionnes + plein dautres choses

File size: 738 bytes
RevLine 
[40]1#ifndef DRIFTDEFINITION_SEEN
2#define DRIFTDEFINITION_SEEN
[45]3#include <string>
[40]4
[41]5#include "abstractElement.h"
[40]6
[45]7using namespace std;
[40]8
[41]9class elementDrift : public abstractElement
[40]10{
[287]11   
12    void setDefaultValues();
13   
14    void setDefaults();
15   
16public:
17   
18    elementDrift();
19   
20   
21    ~elementDrift() {;}
22   
23   
24    virtual string* getParametersString() const;
25   
26    virtual void setParametersString(string* param);
27   
28    virtual  string parmelaOutputFlow() const;
29   
30    virtual string transportOutputFlow() const;
31   
32   
33    virtual string FileOutputFlow() const;
34   
35    virtual void FileInput(ifstream& ifs);
36   
37    /** return a string with all parameters and value
38     */
39    string print();
40   
[40]41};
42
43
44
45#endif
Note: See TracBrowser for help on using the repository browser.