]> Shamusworld >> Repos - architektonas/blobdiff - src/base/fontchar.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / base / fontchar.h
index df74ae57d40bf3e6dfd58e4c22300dbfc15998c8..40b84ea616f4f3883c9a45b87bf329d4d78bd5da 100644 (file)
@@ -8,7 +8,7 @@
  *
  * @author Andrew Mustun
  */
-class RS_FontChar: public RS_Block
+class FontChar: public Block
 {
 public:
     /**
@@ -17,10 +17,10 @@ public:
      *        an identifier.
      * @param basePoint Base point (offset) of the letter (usually 0/0).
      */
-       RS_FontChar(RS_EntityContainer * parent, const QString & name, Vector basePoint):
-               RS_Block(parent, RS_BlockData(name, basePoint, false)) {}
+       FontChar(EntityContainer * parent, const QString & name, Vector basePoint):
+               Block(parent, BlockData(name, basePoint, false)) {}
 
-       virtual ~RS_FontChar() {}
+       virtual ~FontChar() {}
 
        /** @return RS2::EntityFontChar */
        virtual RS2::EntityType rtti() const
@@ -28,9 +28,9 @@ public:
                return RS2::EntityFontChar;
        }
 
-    /*friend std::ostream& operator << (std::ostream& os, const RS_FontChar& b) {
+    /*friend std::ostream& operator << (std::ostream& os, const FontChar& b) {
                os << " name: " << b.getName().latin1() << "\n";
-       os << " entities: " << (RS_EntityContainer&)b << "\n";
+       os << " entities: " << (EntityContainer&)b << "\n";
                return os;
 }*/
 protected: