|
NAMEsc::StringKeyVal - StringKeyVal is a base class for KeyVal implementations that store all values in a string format.SYNOPSIS#include <keyval.h> Inherits sc::KeyVal. Inherited by sc::ParsedKeyVal. Public Member Functionsvirtual const char * stringrep (const char *key)=0 Returns the string representation of the value assigned to key. virtual const char * classname (const char *) Returns the name of the exact class of the object at the keyword. virtual const char * truekeyword (const char *) Returns a string which is the actual keyword if some sort of variable substitution takes place (needed to make multiple references to the same object work in input files). Debugging.
Protected Member Functionsint key_exists (const char *) Ultimately called by exists. Ref< KeyValValue > key_value (const char *, const KeyValValue &def) Ultimately called by value. Additional Inherited MembersDetailed DescriptionStringKeyVal is a base class for KeyVal implementations that store all values in a string format.These are converted to other data types through KeyValValue. Member Function Documentationvirtual const char * sc::StringKeyVal::classname (const char *) [virtual]Returns the name of the exact class of the object at the keyword. If no classname is assigned then 0 is returned.Reimplemented in sc::ParsedKeyVal. virtual void sc::StringKeyVal::dump (std::ostream & fp = ExEnv::err0()) [virtual]Write a message to fp describing the error.Reimplemented from sc::KeyVal. Reimplemented in sc::ParsedKeyVal. virtual void sc::StringKeyVal::errortrace (std::ostream & fp = ExEnv::err0()) [virtual]Write a message to fp describing the error.Reimplemented from sc::KeyVal. Reimplemented in sc::ParsedKeyVal. int sc::StringKeyVal::key_exists (const char *) [protected], [virtual]Ultimately called by exists.Implements sc::KeyVal. Ref< KeyValValue > sc::StringKeyVal::key_value (const char *, const KeyValValue & def) [protected], [virtual]Ultimately called by value.Implements sc::KeyVal. virtual const char * sc::StringKeyVal::stringrep (const char * key) [pure virtual]Returns the string representation of the value assigned to key.Implemented in sc::ParsedKeyVal. virtual const char * sc::StringKeyVal::truekeyword (const char *) [virtual]Returns a string which is the actual keyword if some sort of variable substitution takes place (needed to make multiple references to the same object work in input files).Reimplemented in sc::ParsedKeyVal. AuthorGenerated automatically by Doxygen for MPQC from the source code.
Visit the GSP FreeBSD Man Page Interface. |