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

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

ajout d'une extension de fichier pour les cliches

File size: 672 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  int incr_;
12
13  string snapshotFile_;
14  void setDefaultValues();
15  void setDefaults();
16   
17 public :
18
19  elementSnapshot() {;}
20  elementSnapshot(int);
21  ~elementSnapshot() {;}
22 
23  virtual string* getParametersString() const;
24  virtual void setParametersString(string* param);
25  virtual  string parmelaOutputFlow() const;
26  virtual string transportOutputFlow() const; 
27   
28  virtual string FileOutputFlow() const; 
29  virtual void FileInput(ifstream& ifs);
30  string print(); 
31};
32#endif
Note: See TracBrowser for help on using the repository browser.