Represents a key/value pair where the key and value are strings. More...
#include <Iterator_Class.h>
Public Member Functions | |
ItemPair () | |
Default Constructor. | |
ItemPair (std::string key, std::string value) | |
Constructor. | |
Public Attributes | |
std::string | Key |
std::string | Value |
Represents a key/value pair where the key and value are strings.
Definition at line 25 of file Iterator_Class.h.
|
inline |
Default Constructor.
Definition at line 34 of file Iterator_Class.h.
|
inline |
Constructor.
key | The key to use. |
value | The value to use. |
Definition at line 44 of file Iterator_Class.h.
std::string Key |
Definition at line 28 of file Iterator_Class.h.
Referenced by DesignPatternExamples_cpp::Iterator_Exercise().
std::string Value |
Definition at line 29 of file Iterator_Class.h.
Referenced by DesignPatternExamples_cpp::Iterator_Exercise().