Skip to content

Commit cff3980

Browse files
committed
Removing LoadDiagraph and Clone function
These are removed as they will be added in Version 2.0
1 parent c27a0a5 commit cff3980

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

Version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0
1+
1.0.1

src/csdot/DotDocument.cs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public class DotDocument
1414

1515
#region LoadDigraph
1616

17+
/*
1718
public int LoadDigraph(string i_fileLocation)
1819
{
1920
/*
@@ -228,10 +229,10 @@ public int LoadDigraph(string i_fileLocation)
228229
}
229230
}
230231
}
231-
*/
232+
232233
return 0;
233234
}
234-
235+
*/
235236
#endregion //LoadDigraph
236237

237238
#region SaveToFile
@@ -254,7 +255,7 @@ public void SaveToFile(Graph i_graph, string i_fileLocation)
254255
#endregion //SaveToFile
255256

256257
#region CloneToFile
257-
258+
/*
258259
public int CloneToFile(string i_srcFile, string i_dstFile)
259260
{
260261
/*
@@ -265,9 +266,10 @@ public int CloneToFile(string i_srcFile, string i_dstFile)
265266
Digraph di = new Digraph();
266267
di.LoadDigraph(i_srcFile);
267268
di.SaveToFile(i_dstFile);
268-
*/
269+
269270
return 0;
270271
}
272+
*/
271273

272274
#endregion //CloneToFile
273275

0 commit comments

Comments
 (0)