Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/dvi/dvilib/dl-font.hh
diff options
context:
space:
mode:
Diffstat (limited to 'dvi/dvilib/dl-font.hh')
-rwxr-xr-xdvi/dvilib/dl-font.hh27
1 files changed, 0 insertions, 27 deletions
diff --git a/dvi/dvilib/dl-font.hh b/dvi/dvilib/dl-font.hh
deleted file mode 100755
index 855ab73..0000000
--- a/dvi/dvilib/dl-font.hh
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef DL_FONT_HH__
-#define DL_FONT_HH__
-
-#include "dl-loader.hh"
-#include "dl-refcounted.hh"
-#include "dl-dvi-runtime.hh"
-
-#include <vector>
-#include <map>
-
-namespace DviLib {
-
- class AbstractCharacter : public RefCounted {
- public:
- virtual void paint (DviRuntime &runtime) = 0;
- virtual int get_tfm_width () = 0;
- };
-
- class AbstractFont : public RefCounted {
- public:
- virtual int get_at_size () = 0;
- virtual int get_design_size () = 0;
- virtual AbstractCharacter *get_char (int ccode) = 0;
- };
-}
-
-#endif /* DL_PKFONT_HH__ */