OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
Save.h
Go to the documentation of this file.
1 #ifndef OPAL_Save_HH
2 #define OPAL_Save_HH
3 
4 // ------------------------------------------------------------------------
5 // $RCSfile: Save.h,v $
6 // ------------------------------------------------------------------------
7 // $Revision: 1.1.1.1 $
8 // ------------------------------------------------------------------------
9 // Copyright: see Copyright.readme
10 // ------------------------------------------------------------------------
11 //
12 // Class: Save
13 //
14 // ------------------------------------------------------------------------
15 //
16 // $Date: 2000/03/27 09:33:37 $
17 // $Author: Andreas Adelmann $
18 //
19 // ------------------------------------------------------------------------
20 
21 #include "AbstractObjects/Action.h"
22 
23 
24 // Class Save
25 // ------------------------------------------------------------------------
27 
28 class Save: public Action {
29 
30 public:
31 
33  Save();
34 
35  virtual ~Save();
36 
38  virtual Save *clone(const std::string &name);
39 
41  virtual void execute();
42 
44  void parse(Statement &);
45 
46 private:
47 
48  // Not implemented.
49  Save(const Save &);
50  void operator=(const Save &);
51 
52  // Clone constructor.
53  Save(const std::string &name, Save *parent);
54 };
55 
56 #endif // OPAL_Save_H
The SAVE command.
Definition: Save.h:28
The base class for all OPAL actions.
Definition: Action.h:30
void parse(Statement &)
Parse command (special for one-attribute command).
Definition: Save.cpp:198
virtual Save * clone(const std::string &name)
Make clone.
Definition: Save.cpp:143
virtual ~Save()
Definition: Save.cpp:139
void operator=(const Save &)
Interface for statements.
Definition: Statement.h:38
Save()
Exemplar constructor.
Definition: Save.cpp:122
virtual void execute()
Execute the command.
Definition: Save.cpp:148
const std::string name