An assign associates an intuitive name with a real-world filesystem path.
- Copyright
- (C) 2006 Radon Labs GmbH (C) 2013-2020 Individual contributors, see AUTHORS file
|
| | Assign () |
| | default constructor
|
| |
| | Assign (const Util::String &name, const Util::String &path) |
| | constructor with assign name and path
|
| |
| const Util::String & | GetName () const |
| | get name of assign
|
| |
| const Util::String & | GetPath () const |
| | get path of assign
|
| |
| | KeyValuePair () |
| | default constructor
|
| |
| | KeyValuePair (const Util::String &k, const Util::String &v) |
| | constructor with key and value
|
| |
| | KeyValuePair (const Util::String &k) |
| | constructor with key and undefined value
|
| |
| | KeyValuePair (const KeyValuePair< Util::String, Util::String > &rhs) |
| | copy constructor
|
| |
| | KeyValuePair (KeyValuePair< Util::String, Util::String > &&rhs) noexcept |
| | move constructor
|
| |
| void | operator= (const KeyValuePair< Util::String, Util::String > &rhs) |
| | assignment operator
|
| |
| void | operator= (KeyValuePair< Util::String, Util::String > &&rhs) noexcept |
| | move assignment operator
|
| |
| bool | operator== (const KeyValuePair< Util::String, Util::String > &rhs) const |
| | equality operator
|
| |
| bool | operator== (const Util::String &rhs) const |
| | equality operator
|
| |
| bool | operator!= (const KeyValuePair< Util::String, Util::String > &rhs) const |
| | inequality operator
|
| |
| bool | operator!= (const Util::String &rhs) const |
| | inequality operator
|
| |
| bool | operator> (const KeyValuePair< Util::String, Util::String > &rhs) const |
| | greater operator
|
| |
| bool | operator> (const Util::String &rhs) const |
| | greater operator
|
| |
| bool | operator>= (const KeyValuePair< Util::String, Util::String > &rhs) const |
| | greater-or-equal operator
|
| |
| bool | operator>= (const Util::String &rhs) const |
| | greater-or-equal operator
|
| |
| bool | operator< (const KeyValuePair< Util::String, Util::String > &rhs) const |
| | lesser operator
|
| |
| bool | operator< (const Util::String &rhs) const |
| | lesser operator
|
| |
| bool | operator<= (const KeyValuePair< Util::String, Util::String > &rhs) const |
| | lesser-or-equal operator
|
| |
| bool | operator<= (const Util::String &rhs) const |
| | lesser-or-equal operator
|
| |
| Util::String & | Value () |
| | read/write access to value
|
| |
| const Util::String & | Value () const |
| | read access to key
|
| |
| const Util::String & | Key () const |
| | read access to key
|
| |