Add OBoy C++ class

This commit is contained in:
Fabien Freling 2019-05-11 20:00:33 +02:00
parent 761fc4aa90
commit 95a1f784fc
3 changed files with 21 additions and 4 deletions

14
src/qt/oboy.h Normal file
View file

@ -0,0 +1,14 @@
#pragma once
#include <QObject>
class OBoy : public QObject
{
Q_OBJECT
public:
explicit OBoy(QObject *parent = nullptr);
/* signals: */
/* public slots: */
};