src: moved bundling info to NodeType

* also: fixed NodeType for global variables not in NodeTypeSet::all()
This commit is contained in:
mlangkabel
2017-12-08 15:07:33 +01:00
parent 9ae7f70062
commit 21189bb887
7 changed files with 148 additions and 80 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef TREE_H
#define TREE_H
template <typename T>
struct Tree
{
Tree() {}
Tree(T data) : data(data) {}
T data;
std::vector<Tree<T>> children;
};
#endif // TREE_H