Ignore:
Timestamp:
Sep 30, 2013, 5:03:21 PM (11 years ago)
Author:
touze
Message:

sauvgarde de la configuration sur fichier format AML

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Interface_Web/trunk/pspaWT/sources/controler/include/elementDrift.h

    r418 r424  
    11#ifndef DRIFTDEFINITION_SEEN
    22#define DRIFTDEFINITION_SEEN
     3
    34#include <string>
    4 
    55#include "abstractElement.h"
    66
     
    99class elementDrift : public abstractElement
    1010{
     11 
     12  void setDefaultValues();
     13  void setDefaults();
    1114   
    12     void setDefaultValues();
     15 public:
    1316   
    14     void setDefaults();
     17  elementDrift();
     18  ~elementDrift() {;}
    1519   
    16 public:
    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    
     20  virtual string* getParametersString() const;
     21  virtual void setParametersString(string* param);
     22  virtual vector< pair<string, vector<string> > > parametersToSoftware () const;
     23  //    virtual  string parmelaOutputFlow() const; 
     24  //    virtual string transportOutputFlow() const;
    3225   
    3326    virtual string FileOutputFlow() const;
     27    virtual void FileInput(ifstream& ifs);
     28    virtual void InputRep(UAPNode* root);
    3429
    35     virtual vector< pair<string, vector<string> > > parametersToSoftware () const;
    36 
    37     virtual void FileInput(ifstream& ifs);
    38    
    39     /** return a string with all parameters and value
    40      */
     30    /** return a string with all parameters and value */
    4131    string print();
    42    
    4332};
    44 
    45 
    46 
    4733#endif
Note: See TracChangeset for help on using the changeset viewer.