* open custom trail dialg via button in top of trail controls * search from symbol to symbol or all referenced/referencing of symbol * define search depth with slider * define horizontal/vertical layout * define node and edge types * renamed depth graph to trail in graph ui * added custom trail UI tests fortune cookie message = A happy surprise is waiting for you.
57 lines
375 B
C++
57 lines
375 B
C++
void func()
|
|
{
|
|
int m;
|
|
}
|
|
|
|
void func2()
|
|
{
|
|
func();
|
|
}
|
|
|
|
class CustomA
|
|
{
|
|
public:
|
|
void method()
|
|
{
|
|
func();
|
|
}
|
|
|
|
int i;
|
|
};
|
|
|
|
class CustomB
|
|
{
|
|
public:
|
|
void method()
|
|
{
|
|
a.method();
|
|
}
|
|
|
|
CustomA a;
|
|
};
|
|
|
|
class CustomC
|
|
{
|
|
public:
|
|
int method()
|
|
{
|
|
func2();
|
|
bool a;
|
|
char c;
|
|
}
|
|
|
|
CustomA a;
|
|
};
|
|
|
|
class CustomD
|
|
{
|
|
public:
|
|
void method()
|
|
{
|
|
b.method();
|
|
}
|
|
|
|
CustomB b;
|
|
CustomC c;
|
|
};
|