qpsxserial/serial.hpp

17 lines
209 B
C++

#ifndef SERIAL_HPP
#define SERIAL_HPP
#include <QObject>
class Serial : public QObject
{
Q_OBJECT
public:
explicit Serial(QObject *parent = nullptr);
signals:
public slots:
};
#endif // SERIAL_HPP