Welgriv

Results 2 issues of Welgriv

``` import pydot g = pydot.Dot() n1 = pydot.Node('n1') n2 = pydot.Node('n2') g.add_node(n1) g.add_node(n2) g.add_edge(pydot.Edge(src=n1, dst=n2)) print(g.get_edge(n1, n2)) ``` return an empty list.

with a.hpp and a.cpp in the same directory. a.hpp: ``` class C // class C omg { void f(); }; ``` gives in a.cpp: ``` #include "a.hpp" void omg::f() {...