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