Skeleton for shop plugin.

This commit is contained in:
2016-04-06 21:07:49 +02:00
parent d93e470c10
commit aa5b3cf76f
9 changed files with 157 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
#include "voucher.h"
Voucher::Voucher(QObject *parent) : QObject(parent)
{
}
+17
View File
@@ -0,0 +1,17 @@
#ifndef VOUCHER_H
#define VOUCHER_H
#include <QObject>
class Voucher : public QObject
{
Q_OBJECT
public:
explicit Voucher(QObject *parent = 0);
signals:
public slots:
};
#endif // VOUCHER_H