okular/fontEncodingPool.h
Angus Leeming 9154aba7e4 More info to emacs on how to retain the current style.
svn path=/trunk/KDE/kdegraphics/kviewshell/plugins/dvi/; revision=488778
2005-12-15 21:34:10 +00:00

30 lines
517 B
C++

// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; c-brace-offset: 0; -*-
// fontEncodingPool.h
//
// Part of KDVI - A DVI previewer for the KDE desktop environment
//
// (C) 2003 Stefan Kebekus
// Distributed under the GPL
#ifndef _FONTENCODINGPOOL_H
#define _FONTENCODINGPOOL_H
#include "fontEncoding.h"
#include <Q3Dict>
class QString;
class fontEncodingPool {
public:
fontEncodingPool();
fontEncoding *findByName(const QString &name);
private:
Q3Dict<fontEncoding> dictionary;
};
#endif