49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
m_output <<
"digraph \"goose\"\n"
"{\n"
"\tbgcolor=\"#" << BGColor << "\";\n"
"\trankdir=" << ( vertical ? "TB" : "LR" ) << ";\n"
"\tnode [ shape=none ];\n"
"\tedge [ color=\"#" << TextColor << "\" ];\n";
}
GraphVizBuilder::~GraphVizBuilder()
{
while( !m_workQueue.empty() )
{
m_workQueue.front()();
|
<
|
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
m_output <<
"digraph \"goose\"\n"
"{\n"
"\tbgcolor=\"#" << BGColor << "\";\n"
"\trankdir=" << ( vertical ? "TB" : "LR" ) << ";\n"
"\tnode [ shape=none ];\n"
"\tedge [ color=\"#" << TextColor << "\" ];\n";
}
GraphVizBuilder::~GraphVizBuilder()
{
while( !m_workQueue.empty() )
{
m_workQueue.front()();
|