data: saving NameHierarchy directly to Node without TokenComponentName

This commit is contained in:
Eberhard Graether
2015-09-23 12:45:58 +02:00
parent b07bc7ed19
commit 391082160c
13 changed files with 69 additions and 219 deletions
+2
View File
@@ -11,6 +11,7 @@ class NameHierarchy
{
public:
NameHierarchy();
NameHierarchy(const std::string& name);
~NameHierarchy();
void push(std::shared_ptr<NameElement> element);
@@ -20,6 +21,7 @@ public:
size_t size() const;
std::string getFullName() const;
std::string getName() const;
private:
std::vector<std::shared_ptr<NameElement>> m_elements;