Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
dbusselectclockbyidadaptor.h 1.24 KB
Copy Edit Raw Blame History
/*
* Copyright (C) 2023 KylinSoft Co., Ltd.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef DBUSSELECTCLOCKBYIDADAPTOR_H
#define DBUSSELECTCLOCKBYIDADAPTOR_H
#include <QObject>
#include <QDBusAbstractAdaptor>
#include "clock.h"
class DbusSelectClockByIdAdaptor : public QDBusAbstractAdaptor
{
Q_OBJECT
//声明它正在导出哪个接口
Q_CLASSINFO("D-Bus Interface", CLOCK_DBUS_SERVICE_NAME)
public:
explicit DbusSelectClockByIdAdaptor(QObject *parent = nullptr,Clock * currentClock = nullptr);
signals:
public slots:
QString selectClockByIdRpc(QString param);
private:
Clock * m_clock;
};
#endif // DBUSSELECTCLOCKBYIDADAPTOR_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化