logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

sc::StringKeyVal - StringKeyVal is a base class for KeyVal implementations that store all values in a

Author

       Generated automatically by Doxygen for MPQC from the source code.

Version 2.3.1                                    Sun Oct 4 2020                              sc::StringKeyVal(3)

Detailed Description

StringKeyVal 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 Documentation

virtualconstchar*sc::StringKeyVal::classname(constchar*)[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.

Name

       sc::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.

   PublicMemberFunctions
       virtual 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.
       See the parent class documentation for descriptions of these functions.

           virtual void errortrace (std::ostream &fp=ExEnv::err0())
               Write a message to fp describing the error.
           virtual void dump (std::ostream &fp=ExEnv::err0())
               Write a message to fp describing the error.

   ProtectedMemberFunctions
       int key_exists (const char *)
           Ultimately called by exists.
       Ref< KeyValValue > key_value (const char *, const KeyValValue &def)
           Ultimately called by value.

   AdditionalInheritedMembers

See Also