]> Shamusworld >> Repos - architektonas/blobdiff - src/base/drawing.h
Changed RS_Graphic to Drawing; this is less confusing as a drawing is
[architektonas] / src / base / drawing.h
similarity index 95%
rename from src/base/rs_graphic.h
rename to src/base/drawing.h
index 2b0cba142e2d0535df3816e480206b5375f80992..22b22177e1578b235b87df493eb356f7c85d5666 100644 (file)
  *
  * @author Andrew Mustun
  */
-class RS_Graphic: public RS_Document
+class Drawing: public RS_Document
 {
 public:
-    RS_Graphic(RS_EntityContainer * parent = NULL);
-    virtual ~RS_Graphic();
+    Drawing(RS_EntityContainer * parent = NULL);
+    virtual ~Drawing();
 
     virtual RS2::EntityType rtti() const;
     virtual unsigned long int countLayerEntities(RS_Layer * layer);
@@ -118,7 +118,7 @@ public:
        void setCamData(const RS_CamData & d);
 #endif
 
-    friend std::ostream & operator<<(std::ostream & os, RS_Graphic & g);
+    friend std::ostream & operator<<(std::ostream & os, Drawing & g);
 
 private:
        RS_LayerList layerList;