42 lines
1.8 KiB
C++
42 lines
1.8 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2017 Simon Stuerz <simon.stuerz@guh.io> *
|
|
* *
|
|
* This file is part of guh-control. *
|
|
* *
|
|
* guh-control 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, version 3 of the License. *
|
|
* *
|
|
* guh-control 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 guh-control. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "guhinterface.h"
|
|
|
|
GuhInterface::GuhInterface(QObject *parent) :
|
|
QObject(parent),
|
|
m_connected(false)
|
|
{
|
|
|
|
}
|
|
|
|
bool GuhInterface::connected()
|
|
{
|
|
return m_connected;
|
|
}
|
|
|
|
void GuhInterface::setConnected(const bool &connected)
|
|
{
|
|
if (m_connected != connected) {
|
|
m_connected = connected;
|
|
emit connectedChanged(connected);
|
|
}
|
|
}
|