OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
TableRow.h
Go to the documentation of this file.
1 #ifndef OPAL_TableRow_HH
2 #define OPAL_TableRow_HH
3 
4 // ------------------------------------------------------------------------
5 // $RCSfile: TableRow.h,v $
6 // ------------------------------------------------------------------------
7 // $Revision: 1.1.1.1 $
8 // ------------------------------------------------------------------------
9 // Copyright: see Copyright.readme
10 // ------------------------------------------------------------------------
11 //
12 // Class: TableRow
13 //
14 // ------------------------------------------------------------------------
15 //
16 // $Date: 2000/03/27 09:33:36 $
17 // $Author: Andreas Adelmann $
18 //
19 // ------------------------------------------------------------------------
20 
24 
25 class TableRowRep;
26 
27 
28 // Class TableRow
29 // ------------------------------------------------------------------------
30 
31 namespace Attributes {
32 
34  class TableRow: public AttributeHandler {
35 
36  public:
37 
39  // Assign attribute name and help string.
40  TableRow(const std::string &name, const std::string &help);
41 
42  virtual ~TableRow();
43 
45  virtual const std::string &getType() const;
46 
48  virtual void parse(Attribute &, Statement &, bool) const;
49 
50  private:
51 
52  // Not implemented.
53  TableRow(const TableRow &);
54  void operator=(const TableRow &);
55  };
56 
57 };
58 
59 #endif // OPAL_TableRow_HH
virtual ~TableRow()
Definition: TableRow.cpp:38
Representation of a table row reference.
Definition: TableRowRep.h:36
virtual void parse(Attribute &, Statement &, bool) const
Parse the attribute.
Definition: TableRow.cpp:48
virtual const std::string & getType() const
Return attribute type string ``table line''.
Definition: TableRow.cpp:42
A representation of an Object attribute.
Definition: Attribute.h:55
Interface for statements.
Definition: Statement.h:38
Abstract base class for attribute parsers.
Parser for an attribute of type table row reference.
Definition: TableRow.h:34
const std::string name
TableRow(const std::string &name, const std::string &help)
Constructor.
Definition: TableRow.cpp:33
void operator=(const TableRow &)