ui: graphView

Graph view has now toggle-able subnodes. Subnodes connected to the active node are always visible.

fortune cookie message = You will enjoy true success in whatever you do.
This commit is contained in:
Manuel Dobusch
2014-10-20 14:36:57 +02:00
parent ce666acbfd
commit 103e60b52a
16 changed files with 478 additions and 72 deletions
+21
View File
@@ -1,8 +1,10 @@
/*
#include <string>
#include <vector>
#include <map>
#include <memory>
#include <functional>
/* */
const bool *abd(int abc, int bca);
@@ -117,6 +119,25 @@ namespace
};
}
noname::V voo;
typedef A* D;
D globalD;
class E
{
public:
E(){}
~E(){}
class SubE
{
public:
SubE(){}
~SubE(){}
};
private:
int m_importantInt;
};