This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-01-04 16:46:26 +01:00

22 lines
384 B
C++

#ifndef PLATFORMHELPERUBPORTS_H
#define PLATFORMHELPERUBPORTS_H
#include <QObject>
#include "platformhelper.h"
class PlatformHelperUBPorts : public PlatformHelper
{
Q_OBJECT
public:
explicit PlatformHelperUBPorts(QObject *parent = nullptr);
QString platform() const override;
QString deviceSerial() const override;
signals:
};
#endif // PLATFORMHELPERUBPORTS_H