Use the lea instruction to reduce number of "inc"s
[ipdf/code.git] / src / document.h
index 71f6d38..5ec5dad 100644 (file)
@@ -8,18 +8,28 @@ namespace IPDF
        class Document
        {
                public:
-                       Document() : m_objects(), m_count(0) {Load();}
+                       Document(const std::string & filename = "") : m_objects(), m_count(0) {Load(filename);}
                        virtual ~Document() {}
 
                        void Load(const std::string & filename = "");
-                       void Add(Real x, Real y, Real w, Real h);
+                       void Save(const std::string & filename);
+                       void DebugDumpObjects();
 
-                       unsigned ObjectCount() {return m_count;}
+                       unsigned ObjectCount() const {return m_count;}
+                       inline const Objects & GetObjects() const {return m_objects;}
+
+                       bool operator==(const Document & equ) const;
+                       bool operator!=(const Document & equ) const {return !(this->operator==(equ));}
+
+                       void Add(ObjectType type, const Rect & bounds, unsigned data_index = 0);
+                       unsigned AddBezierData(const Bezier & bezier);
 
                private:
                        friend class View;
                        Objects m_objects;
                        unsigned m_count;
+                       
+
        };
 }
 

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