mirror of
https://github.com/nymea/nymea-plugins.git
synced 2026-07-11 23:59:59 +02:00
16 lines
234 B
C++
16 lines
234 B
C++
#ifndef SENECLANSTORAGE_H
|
|
#define SENECLANSTORAGE_H
|
|
|
|
#include <QObject>
|
|
|
|
class SenecLanStorage : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SenecLanStorage(QObject *parent = nullptr);
|
|
|
|
signals:
|
|
};
|
|
|
|
#endif // SENECLANSTORAGE_H
|