diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2014-12-28 00:40:05 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2014-12-28 00:40:05 +0100 |
commit | c52658e07d3a139790bf074a969c7e3ae98290b0 (patch) | |
tree | ac60ccefd67a73fbcfff1baf112eebd16db40e85 /src | |
parent | 158c7abd4cf7e99150d89074e13c0e7bb620f453 (diff) |
autoformat
Diffstat (limited to 'src')
-rw-r--r-- | src/core/Node.hpp | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/core/Node.hpp b/src/core/Node.hpp index 1bc4008..50f9a96 100644 --- a/src/core/Node.hpp +++ b/src/core/Node.hpp @@ -351,11 +351,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; } + const std::string &getNameRef() const { return name; } /** * Specifies whether the node has a name, e.g. whether the current name is @@ -437,7 +437,7 @@ public: * @return a vector containing all found node references. */ std::vector<Rooted<Managed>> resolve(const std::vector<std::string> &path, - Filter filter, void *filterData); + Filter filter, void *filterData); /** * Function which resolves a name path to a list of possible nodes starting @@ -466,7 +466,7 @@ public: * @return a vector containing all found node references. */ std::vector<Rooted<Managed>> resolve(const char *, Filter filter, - void *filterData) + void *filterData) { return resolve(std::vector<std::string>{name}, filter, filterData); } @@ -543,12 +543,11 @@ public: }; namespace RttiTypes { - /** - * Typeinformation for the base "Node" class. - */ - extern const Rtti<Node> Node; +/** + * Typeinformation for the base "Node" class. + */ +extern const Rtti<Node> Node; } - } #endif /* _OUSIA_NODE_HPP_ */ |