2022-03-05 22:41:29 +05:00

18 lines
326 B
C++

#pragma once
#include "FontInst.h"
#include "FontinstIface.h"
namespace KFI
{
class FontInstInterface : public OrgKdeFontinstInterface
{
public:
FontInstInterface()
: OrgKdeFontinstInterface(OrgKdeFontinstInterface::staticInterfaceName(), FONTINST_PATH, QDBusConnection::sessionBus(), nullptr)
{
}
};
}