Skeleton for shop plugin.
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
#include "voucher.h"
|
||||
|
||||
Voucher::Voucher(QObject *parent) : QObject(parent)
|
||||
{
|
||||
|
||||
}
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user