source: PSPA/Interface_Web/trunk/pspaWT/sources/controler/include/elementSnapshot.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: 616 bytes
Line 
1#ifndef SNAPSHOTDEFINITION_SEEN
2#define SNAPSHOTDEFINITION_SEEN
3
4#include <string>
5#include "abstractElement.h"
6
7using namespace std;
8
9class elementSnapshot : public abstractElement
10{
11   
12  void setDefaultValues();
13  void setDefaults();
14   
15 public :
16   
17  elementSnapshot();
18  ~elementSnapshot() {;}
19 
20  virtual string* getParametersString() const;
21  virtual void setParametersString(string* param);
22  virtual  string parmelaOutputFlow() const;
23  virtual string transportOutputFlow() const; 
24   
25  virtual string FileOutputFlow() const; 
26  virtual void FileInput(ifstream& ifs);
27  string print(); 
28};
29#endif
Note: See TracBrowser for help on using the repository browser.