// fontEncodingPool.h // // Part of KDVI - A DVI previewer for the KDE desktop environemt // // (C) 2003 Stefan Kebekus // Distributed under the GPL #include <../config.h> #ifdef HAVE_FREETYPE #ifndef _FONTENCODINGPOOL_H #define _FONTENCODINGPOOL_H #include #include #include #include "fontEncoding.h" class fontEncodingPool { public: fontEncodingPool(void); fontEncoding *findByName(const QString &name); private: QDict dictionary; }; #endif #endif // HAVE_FREETYPE