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