#include <func.h>
Public Member Functions | |
virtual | ~rpt_value_func () |
rpt_func::pointer | query () const |
Static Public Member Functions | |
static rpt_value::pointer | create (const rpt_func::pointer &value) |
Protected Member Functions | |
const char * | name () const |
rpt_value::pointer | stringize_or_null () const |
Private Member Functions | |
rpt_value_func (const rpt_func::pointer &value) | |
rpt_value_func () | |
rpt_value_func (const rpt_value_func &) | |
rpt_value_func & | operator= (const rpt_value_func &) |
Private Attributes | |
rpt_func::pointer | value |
Definition at line 30 of file func.h.
virtual rpt_value_func::~rpt_value_func | ( | ) | [virtual] |
The destructor.
rpt_value_func::rpt_value_func | ( | const rpt_func::pointer & | value | ) | [private] |
The constructor. It is private on purpose, use the "create" class method instead.
rpt_value_func::rpt_value_func | ( | ) | [private] |
The default constructor. Do not use.
rpt_value_func::rpt_value_func | ( | const rpt_value_func & | ) | [private] |
The copy constructor. Do not use.
static rpt_value::pointer rpt_value_func::create | ( | const rpt_func::pointer & | value | ) | [static] |
The create class method is used to create new dynamically allocated instances of this class.
rpt_func::pointer rpt_value_func::query | ( | ) | const |
The query method may be used to obtain the value.
const char* rpt_value_func::name | ( | ) | const [protected, virtual] |
The name method is used to obtain the name of the type of the value.
Implements rpt_value.
rpt_value::pointer rpt_value_func::stringize_or_null | ( | ) | const [protected, virtual] |
The stringize_or_null method is used to convert a value to a string, if possible, or return NULL if it is not possible. This NULL is used by the stringize class method to return the unchanged value if no conversion is possible.
Reimplemented from rpt_value.
rpt_value_func& rpt_value_func::operator= | ( | const rpt_value_func & | ) | [private] |
The assignment operator. Do not use.
rpt_func::pointer rpt_value_func::value [private] |