示例#1
0
文件: WorkFlow.cs 项目: ritro/White
 public WorkFlow(string name, string archiveLocation)
 {
     Log("Starting flow " + name);
     directory = CreateNewDirectory(name, archiveLocation);
     graph = new GraphWriter(string.Format(@"{0}\graph.dot", directory));
     flow = new FlowWriter(string.Format(@"{0}\flow.dot", directory));
 }
示例#2
0
 public WorkFlow(string name, string archiveLocation)
 {
     Log("Starting flow " + name);
     directory = CreateNewDirectory(name, archiveLocation);
     graph     = new GraphWriter(string.Format(@"{0}\graph.dot", directory));
     flow      = new FlowWriter(string.Format(@"{0}\flow.dot", directory));
 }