]> Shamusworld >> Repos - architektonas/blobdiff - src/base/rs_font.h
Adding missing implementation.
[architektonas] / src / base / rs_font.h
index 515979a634145a66081e38d594e8e2edd9613d45..61eee2299b0a580c2a543654a9a9a17f6ae642fb 100644 (file)
@@ -6,7 +6,7 @@
 #include "rs_blocklist.h"
 
 /**
- * Class for representing a font. This is implemented as a RS_Graphic
+ * Class for representing a font. This is implemented as a Drawing
  * with a name (the font name) and several blocks, one for each letter
  * in the font.
  *
@@ -18,7 +18,6 @@ class RS_Font
 
        public:
                RS_Font(const QString & name, bool owner = true);
-               //RS_Font(const char* name);
 
                QString getFileName() const;
                QString getEncoding() const;
@@ -37,6 +36,12 @@ class RS_Font
 
                friend std::ostream & operator<<(std::ostream & os, const RS_Font & l);
 
+#if 1
+       private:
+               void ParseIdentifier(QTextStream &, QString);
+               void ParseCharacter(QTextStream &, QString);
+#endif
+
        private:
                //! block list (letters)
                RS_BlockList letterList;