![]() |
Gray C++ Libraries
0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
|
#include <cIniMap.h>
Public Member Functions | |
| cIniKeyValue () | |
| cIniKeyValue (cAtomRef aKey, cStringI sVal) | |
| ATOMCODE_t | get_HashCode () const noexcept |
| bool | operator== (const cIniKeyValue &e) const noexcept |
| HRESULT | GetValInt (int *piValue) const |
| HRESULT | GetValDouble (double *pdValue) const |
Public Attributes | |
| cAtomRef | m_aKey |
| property key name. More... | |
| cStringI | m_sVal |
| property value as a string. More... | |
A single tuple. a key/named string and value pair. value/property stored as string. AKA cXmlAttribute. like cPair, cPairT, similar to "std::tuple<>" or "System.Collections.Generic.KeyValuePair<>", cVarTuple
|
inline |
|
inlinenoexcept |
| HRESULT Gray::cIniKeyValue::GetValDouble | ( | double * | pdValue | ) | const |
get value type converted to double. error as if using scanf("%lf")
| HRESULT Gray::cIniKeyValue::GetValInt | ( | int * | piValue | ) | const |
get value type converted to int. error as if using scanf("%d")
|
inlinenoexcept |
| cAtomRef Gray::cIniKeyValue::m_aKey |
property key name.
| cStringI Gray::cIniKeyValue::m_sVal |
property value as a string.