mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
23 lines
422 B
C++
23 lines
422 B
C++
#ifndef __FONTINST_INTERFACE_H__
|
|
#define __FONTINST_INTERFACE_H__
|
|
|
|
#include "FontinstIface.h"
|
|
#include "FontInst.h"
|
|
|
|
namespace KFI
|
|
{
|
|
|
|
class FontInstInterface : public OrgKdeFontinstInterface
|
|
{
|
|
public:
|
|
|
|
FontInstInterface()
|
|
: OrgKdeFontinstInterface(OrgKdeFontinstInterface::staticInterfaceName(),
|
|
FONTINST_PATH, QDBusConnection::sessionBus(), 0L)
|
|
{
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|