Created
June 23, 2014 22:45
-
-
Save jerstlouis/3fe3873d60b617969861 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TopoEdge : struct | |
{ | |
Link in, out; | |
External from, to; | |
bool breakable; | |
}; | |
class External | |
{ | |
public const char * output; | |
LinkList<TopoEdge, out> outgoing { }; | |
LinkList<TopoEdge, in> incoming { }; | |
} | |
class FunctionExternal : External | |
{ | |
} | |
class DeclarationExternal : External | |
{ | |
} | |
void CreateEdge(External from, External to, bool soft) | |
{ | |
TopoEdge e { from = from, to = to, breakable = soft }; | |
from.outgoing.Add(e); | |
to.incoming.Add(e); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment