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

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

ajout de tooltip et nettoyage de code

File size: 820 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    void setDefaultValues();
13   
14    void setDefaults();
15   
16public:
17   
18    elementDrift();
19   
20   
21    ~elementDrift() {;}
22   
23    virtual trivaluedBool is_accepted_by_software(nomDeLogiciel soft) const;
24   
25   
26    virtual string* getParametersString() const;
27   
28    virtual void setParametersString(string* param);
29   
30    virtual  string parmelaOutputFlow() const;
31   
32    virtual string transportOutputFlow() const;
33   
34   
35    virtual string FileOutputFlow() const;
36   
37    virtual void FileInput(ifstream& ifs);
38   
39    /** return a string with all parameters and value
40     */
41    string print();
42   
43};
44
45
46
47#endif
Note: See TracBrowser for help on using the repository browser.