9a519b0317ec7f543179b81e87ed7066c6259536
[ipdf/code.git] / src / view.h
1 #ifndef _VIEW_H
2 #define _VIEW_H
3
4 #include "ipdf.h"
5 #include "document.h"
6
7 namespace IPDF
8 {
9         class View
10         {
11                 public:
12                         View(Document & document) : m_document(document), m_bounds(0,0,1,1) {}
13                         virtual ~View() {}
14
15                         void Render();
16                 
17                 private:
18                         Document & m_document;
19                         Rect m_bounds;
20         };
21 }
22
23 #endif //_VIEW_H

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