Public Member Functions | |
TableEntry (const value_type value) | |
virtual | ~TableEntry () |
value_type | value () const |
virtual void | write_text (std::ostream &out) const |
virtual void | write_tex (std::ostream &out) const |
Private Attributes | |
const value_type | val |
TableEntry
stores the value of a table entry. The value type of this table entry is arbitrary. For a TableEntry<typename value_type>
with a non-common value type you may want to specialize the output functions in order to get nicer output. This class is not to be used by the user.
For more detail see the TableHandler
class.
TableEntry< value_type >::TableEntry | ( | const value_type | value | ) |
Constructor.
virtual TableEntry< value_type >::~TableEntry | ( | ) | [virtual] |
Destructor.
value_type TableEntry< value_type >::value | ( | ) | const |
Returns the value of this table entry.
virtual void TableEntry< value_type >::write_text | ( | std::ostream & | out | ) | const [virtual] |
Write the table entry as text.
Implements TableEntryBase.
virtual void TableEntry< value_type >::write_tex | ( | std::ostream & | out | ) | const [virtual] |
Write the table entry in tex format.
Implements TableEntryBase.
const value_type TableEntry< value_type >::val [private] |
Stored value.