File indexing completed on 2025-01-26 05:08:07

0001 #pragma once
0002 
0003 #include "FontInst.h"
0004 #include "FontinstIface.h"
0005 
0006 namespace KFI
0007 {
0008 class FontInstInterface : public OrgKdeFontinstInterface
0009 {
0010 public:
0011     FontInstInterface()
0012         : OrgKdeFontinstInterface(OrgKdeFontinstInterface::staticInterfaceName(), FONTINST_PATH, QDBusConnection::sessionBus(), nullptr)
0013     {
0014     }
0015 };
0016 
0017 }