mirror of
https://github.com/nymea/nymea-plugins.git
synced 2026-07-14 00:12:27 +02:00
12 lines
168 B
C++
12 lines
168 B
C++
#include "owlettransport.h"
|
|
|
|
OwletTransport::OwletTransport(QObject *parent) : QObject(parent)
|
|
{
|
|
|
|
}
|
|
|
|
bool OwletTransport::connected() const
|
|
{
|
|
return m_connected;
|
|
}
|