Tester to compare custom Real to IEEE float
[ipdf/code.git] / src / main.cpp
index e683564..1b2073e 100644 (file)
@@ -1,7 +1,23 @@
-#include "common.h"
-
+#include "main.h"
+#include <unistd.h> // Because we can.
 int main(int argc, char ** argv)
 int main(int argc, char ** argv)
-{
-       Debug("It's alive!");
+{      
+       Document doc;
+       srand(time(NULL));
+       if (argc > 1)
+       {
+               for (int i = 2; i < argc; ++i)
+               {
+                       if (fork() == 0) doc.Load(argv[i]);
+               }
+               doc.Load(argv[1]);
+       }
+       else
+       {
+               Debug("Add random object");
+               //doc.Add(RECT_FILLED, Rect(Random()*0.5, Random()*0.5, Random()*0.5, Random()*0.5));
+               doc.Add(RECT_FILLED, Rect(0.25,0.25, 0.5, 0.5));
+       }
+       MainLoop(doc);
        return 0;
 }
        return 0;
 }

UCC git Repository :: git.ucc.asn.au