Added Document and View classes
[ipdf/code.git] / src / main.cpp
1 #include "common.h"
2
3 #include "document.h"
4 #include "view.h"
5
6 using namespace std;
7 using namespace IPDF;
8
9 int main(int argc, char ** argv)
10 {
11         Document doc;
12         doc.Add(0.5, 0.5, 0.5, 0.5);
13
14         View view(doc);
15         view.Render();
16
17         return 0;
18 }

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