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