diff options
author | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2014-12-18 14:49:50 +0100 |
---|---|---|
committer | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2014-12-18 14:49:50 +0100 |
commit | 94a60d364203f633370e1b0a77ec5b89428032e3 (patch) | |
tree | e9ef9970ec8dd93b5d302a6d52b6d90ae238eadb /src/core/Node.hpp | |
parent | 93c065174e1aa306ee724dd523ef6b2254c1d388 (diff) |
Hopefully implemented a working version of the Domain resolve mechanism.
Diffstat (limited to 'src/core/Node.hpp')
-rw-r--r-- | src/core/Node.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/Node.hpp b/src/core/Node.hpp index 4bc95be..516da03 100644 --- a/src/core/Node.hpp +++ b/src/core/Node.hpp @@ -350,6 +350,11 @@ public: * Returns the name of the node. */ std::string getName() const { return name; } + + /** + * Returns a reference to the name of the node. + */ + const std::string& getNameRef() const { return name; } /** * Specifies whether the node has a name, e.g. whether the current name is |