X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fmain.cpp;h=1b2073e8ac16032c13c1c2b674cd6da682852985;hp=e68356462835f8cd038c893a29fb52ba5c3ba98c;hb=95dd47f77239fd252e0292dca21baac29513bc7b;hpb=f8de7d373ff0a5d977adee1d1a464401ece60550 diff --git a/src/main.cpp b/src/main.cpp index e683564..1b2073e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,7 +1,23 @@ -#include "common.h" - +#include "main.h" +#include // Because we can. 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; }