OPALX (Object Oriented Parallel Accelerator Library for Exascal) master (dc2a29eed580)
OPALX
Loading...
Searching...
No Matches
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
25class TableRowRep;
26
27// Class TableRow
28// ------------------------------------------------------------------------
29
30namespace Attributes {
31
33 class TableRow : public AttributeHandler {
34 public:
36 // Assign attribute name and help string.
37 TableRow(const std::string& name, const std::string& help);
38
39 virtual ~TableRow();
40
42 virtual const std::string& getType() const;
43
45 virtual void parse(Attribute&, Statement&, bool) const;
46
47 private:
48 // Not implemented.
50 void operator=(const TableRow&);
51 };
52
53}; // namespace Attributes
54
55#endif // OPAL_TableRow_HH
Abstract base class for attribute parsers.
A representation of an Object attribute.
Definition Attribute.h:52
Parser for an attribute of type table row reference.
Definition TableRow.h:33
virtual const std::string & getType() const
Return attribute type string `‘table line’'.
Definition TableRow.cpp:37
virtual void parse(Attribute &, Statement &, bool) const
Parse the attribute.
Definition TableRow.cpp:42
TableRow(const TableRow &)
void operator=(const TableRow &)
Interface for statements.
Definition Statement.h:37
Representation of a table row reference.
Definition TableRowRep.h:35
A collection of routines to construct object Attributes and retrieve.