sgready: Add Qt6 support

This commit is contained in:
Simon Stürz 2025-08-08 16:14:09 +02:00
parent 70d6519409
commit 4f728d2595
3 changed files with 8 additions and 7 deletions

View File

@ -1,6 +1,6 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Copyright 2013 - 2021, nymea GmbH * Copyright 2013 - 2025, nymea GmbH
* Contact: contact@nymea.io * Contact: contact@nymea.io
* *
* This file is part of nymea. * This file is part of nymea.
@ -29,6 +29,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "integrationpluginsgready.h" #include "integrationpluginsgready.h"
#include "sgreadyinterface.h"
#include "plugininfo.h" #include "plugininfo.h"
IntegrationPluginSgReady::IntegrationPluginSgReady() IntegrationPluginSgReady::IntegrationPluginSgReady()

View File

@ -1,6 +1,6 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Copyright 2013 - 2021, nymea GmbH * Copyright 2013 - 2025, nymea GmbH
* Contact: contact@nymea.io * Contact: contact@nymea.io
* *
* This file is part of nymea. * This file is part of nymea.
@ -31,8 +31,9 @@
#ifndef INTEGRATIONPLUGINSGREADY_H #ifndef INTEGRATIONPLUGINSGREADY_H
#define INTEGRATIONPLUGINSGREADY_H #define INTEGRATIONPLUGINSGREADY_H
#include "integrations/integrationplugin.h" #include <integrations/integrationplugin.h>
#include "sgreadyinterface.h"
class SgReadyInterface;
class IntegrationPluginSgReady : public IntegrationPlugin class IntegrationPluginSgReady : public IntegrationPlugin
{ {

View File

@ -1,6 +1,6 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Copyright 2013 - 2021, nymea GmbH * Copyright 2013 - 2025, nymea GmbH
* Contact: contact@nymea.io * Contact: contact@nymea.io
* *
* This file is part of nymea. * This file is part of nymea.
@ -32,8 +32,7 @@
#define SGREADYINTERFACE_H #define SGREADYINTERFACE_H
#include <QObject> #include <QObject>
#include <gpio.h>
#include "gpio.h"
class SgReadyInterface : public QObject class SgReadyInterface : public QObject
{ {