OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
Static.h
Go to the documentation of this file.
1 #ifndef OPAL_Static_HH
2 #define OPAL_Static_HH
3 
4 // ------------------------------------------------------------------------
5 // $RDSfile: Static.hh,v $
6 // ------------------------------------------------------------------------
7 // $Revision: 1.1.1.1 $
8 // ------------------------------------------------------------------------
9 // Copyright: see Copyright.readme
10 // ------------------------------------------------------------------------
11 //
12 // Class: Static
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 Static
25 // ------------------------------------------------------------------------
27 
28 class Static: public Action {
29 
30 public:
31 
33  Static();
34 
35  virtual ~Static();
36 
38  virtual Static *clone(const std::string &name);
39 
41  virtual void execute();
42 
43 private:
44 
45  // Not implemented.
46  Static(const Static &);
47  void operator=(const Static &);
48 
49  // Clone constructor.
50  Static(const std::string &name, Static *parent);
51 };
52 
53 #endif // OPAL_Static_HH
virtual Static * clone(const std::string &name)
Make clone.
Definition: Static.cpp:80
The base class for all OPAL actions.
Definition: Action.h:30
virtual void execute()
Execute the command.
Definition: Static.cpp:85
void operator=(const Static &)
virtual ~Static()
Definition: Static.cpp:76
Static()
Exemplar constructor.
Definition: Static.cpp:55
The STATIC command.
Definition: Static.h:28
const std::string name