mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 03:12:51 +00:00
24 lines
422 B
C
24 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
|