mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 11:22:55 +00:00
31 lines
547 B
C
31 lines
547 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 <QHash>
|
||
|
|
||
|
class QString;
|
||
|
|
||
|
|
||
|
class fontEncodingPool {
|
||
|
public:
|
||
|
fontEncodingPool();
|
||
|
~fontEncodingPool();
|
||
|
|
||
|
fontEncoding *findByName(const QString &name);
|
||
|
|
||
|
private:
|
||
|
QHash<QString,fontEncoding*> dictionary;
|
||
|
};
|
||
|
|
||
|
#endif
|