You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
453 B
30 lines
453 B
// -*- C++ -*-
|
|
// fontEncodingPool.h
|
|
//
|
|
// Part of KDVI - A DVI previewer for the KDE desktop environemt
|
|
//
|
|
// (C) 2003 Stefan Kebekus
|
|
// Distributed under the GPL
|
|
|
|
#ifndef _FONTENCODINGPOOL_H
|
|
#define _FONTENCODINGPOOL_H
|
|
|
|
#include "fontEncoding.h"
|
|
|
|
#include <tqdict.h>
|
|
|
|
class TQString;
|
|
|
|
|
|
class fontEncodingPool {
|
|
public:
|
|
fontEncodingPool();
|
|
|
|
fontEncoding *findByName(const TQString &name);
|
|
|
|
private:
|
|
TQDict<fontEncoding> dictionary;
|
|
};
|
|
|
|
#endif
|