blob: 7ddc8f430e1549a996fe4d62a2d3e315babd0fce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// 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
|