]> Shamusworld >> Repos - architektonas/blobdiff - src/fileio.cpp
Added line-to-circle intersection code.
[architektonas] / src / fileio.cpp
index 27ed4f3c3ccec27eacee2403c6bc0b891863c5f3..e0028cd90228c9d96a6ecd0fddea57f11382183f 100644 (file)
@@ -8,7 +8,7 @@
 // JLH = James Hammons <jlhamm@acm.org>
 //
 // Who  When        What
-// ---  ----------  -------------------------------------------------------------
+// ---  ----------  ------------------------------------------------------------
 // JLH  02/20/2013  Created this file
 //
 
 #include <stdlib.h>
 #include <string.h>
 #include <vector>
-//#include "arc.h"
-//#include "circle.h"
-//#include "container.h"
-//#include "dimension.h"
-//#include "line.h"
 #include "structs.h"
 
 /*
@@ -113,8 +108,8 @@ OTHER CONSIDERATIONS:
 
 */
 
-enum ObjectTypeFile { OTFContainer, OTFContainerEnd, OTFLine, OTFCircle, OTFArc, OTFDimension,
-       OTFPolygon, OTFText, OTFImage, OTFBlock, OTFEndOfFile };
+enum ObjectTypeFile { OTFContainer, OTFContainerEnd, OTFLine, OTFCircle, OTFArc,
+       OTFDimension, OTFPolygon, OTFText, OTFImage, OTFBlock, OTFEndOfFile };
 
 
 /*static*/ bool FileIO::SaveAtnsFile(FILE * file, Container * object)