File indexing completed on 2024-05-12 05:39:40

0001 /*
0002  * This file was generated by qdbusxml2cpp version 0.8
0003  * Command line was: qdbusxml2cpp -c DbusAdaptor -a dbusadaptor.h:dbusadaptor.cpp org.rolisteam.server.xml
0004  *
0005  * qdbusxml2cpp is Copyright (C) 2019 The Qt Company Ltd.
0006  *
0007  * This is an auto-generated file.
0008  * Do not edit! All changes made to it will be lost.
0009  */
0010 
0011 #include "dbusadaptor.h"
0012 #include <QtCore/QMetaObject>
0013 #include <QtCore/QByteArray>
0014 #include <QtCore/QList>
0015 #include <QtCore/QMap>
0016 #include <QtCore/QString>
0017 #include <QtCore/QStringList>
0018 #include <QtCore/QVariant>
0019 
0020 /*
0021  * Implementation of adaptor class DbusAdaptor
0022  */
0023 
0024 DbusAdaptor::DbusAdaptor(QObject *parent)
0025     : QDBusAbstractAdaptor(parent)
0026 {
0027     // constructor
0028     setAutoRelaySignals(true);
0029 }
0030 
0031 DbusAdaptor::~DbusAdaptor()
0032 {
0033     // destructor
0034 }
0035 
0036 void DbusAdaptor::createEmptyConfigFile(const QString &filepath)
0037 {
0038     // handle method call local.RolisteamDaemon.createEmptyConfigFile
0039     QMetaObject::invokeMethod(parent(), "createEmptyConfigFile", Q_ARG(QString, filepath));
0040 }
0041 
0042 bool DbusAdaptor::readConfigFile(const QString &in0)
0043 {
0044     // handle method call local.RolisteamDaemon.readConfigFile
0045     bool out0;
0046     QMetaObject::invokeMethod(parent(), "readConfigFile", Q_RETURN_ARG(bool, out0), Q_ARG(QString, in0));
0047     return out0;
0048 }
0049