source: PSPA/Interface_Web/trunk/pspaWT/sources/controler/include/elementSnapshot.h @ 373

Last change on this file since 373 was 373, checked in by touze, 11 years ago

recupere travail sur elt snapshot

File size: 635 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  string snapshotFile_;
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.