You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
326 B
17 lines
326 B
#pragma once |
|
|
|
#include "FontInst.h" |
|
#include "FontinstIface.h" |
|
|
|
namespace KFI |
|
{ |
|
class FontInstInterface : public OrgKdeFontinstInterface |
|
{ |
|
public: |
|
FontInstInterface() |
|
: OrgKdeFontinstInterface(OrgKdeFontinstInterface::staticInterfaceName(), FONTINST_PATH, QDBusConnection::sessionBus(), nullptr) |
|
{ |
|
} |
|
}; |
|
|
|
}
|
|
|