OPAL (Object Oriented Parallel Accelerator Library) 2022.1
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
25class TableRowRep;
26
27
28// Class TableRow
29// ------------------------------------------------------------------------
30
31namespace 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.
54 void operator=(const TableRow &);
55 };
56
57};
58
59#endif // OPAL_TableRow_HH
const std::string name
A collection of routines to construct object Attributes and retrieve.
Definition: Attributes.cpp:85
A representation of an Object attribute.
Definition: Attribute.h:52
Abstract base class for attribute parsers.
Representation of a table row reference.
Definition: TableRowRep.h:36
Parser for an attribute of type table row reference.
Definition: TableRow.h:34
virtual const std::string & getType() const
Return attribute type string `‘table line’'.
Definition: TableRow.cpp:42
TableRow(const std::string &name, const std::string &help)
Constructor.
Definition: TableRow.cpp:33
virtual ~TableRow()
Definition: TableRow.cpp:38
virtual void parse(Attribute &, Statement &, bool) const
Parse the attribute.
Definition: TableRow.cpp:48
TableRow(const TableRow &)
void operator=(const TableRow &)
Interface for statements.
Definition: Statement.h:38