/
NeoChapay
/
telegraf
Обзор
Документация
Войти
/
NeoChapay
/
telegraf
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/dbusadaptor.cpp
22 строки
520 B
Mikhail Barashkov
refactor: remove standard comments from header of all source files
07 сен 2024, 14:40
07 сен 2024, 14:40
c79ea8f
Код
Авторство
О чём код?
#include "dbusadaptor.h" #define DEBUG_MODULE DBusAdaptor #include "debuglog.h" DBusAdaptor::DBusAdaptor(QObject *parent): QDBusAbstractAdaptor(parent) { } void DBusAdaptor::openMessage(const QString &chatId, const QString &messageId) { LOG("Open Message" << chatId << messageId); emit pleaseOpenMessage(chatId, messageId); } void DBusAdaptor::openUrl(const QStringList &arguments) { LOG("Open Url" << arguments); if (arguments.length() >= 1) { emit pleaseOpenUrl(arguments.first()); } }