예제 #1
0
파일: WorkFlow.cs 프로젝트: posaunehm/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));
 }