Added Document and View classes
[ipdf/code.git] / src / view.cpp
1 #include "view.h"
2
3 using namespace IPDF;
4 using namespace std;
5
6 void View::Render()
7 {
8         Debug("Bounds are %s", m_bounds.Str().c_str());
9         Debug("Objects are:");
10         for (unsigned id = 0; id < m_document.ObjectCount(); ++id)
11         {
12                 Debug("%u\t%s", id, m_document.m_objects.bounds[id].Str().c_str());
13         }
14 }

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