Added seller interface for preparing shop items from other plugins.
parent
1e785fd488
commit
397ec82d06
@ -0,0 +1,9 @@
|
||||
#include "iseller.h"
|
||||
|
||||
ISeller::ISeller(QObject *parent) : QObject(parent)
|
||||
{
|
||||
}
|
||||
|
||||
ISeller::~ISeller()
|
||||
{
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
#ifndef ISELLER_H
|
||||
#define ISELLER_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
#include "ishopitem.h"
|
||||
#include "shop_global.h"
|
||||
|
||||
class SHOPSHARED_EXPORT ISeller : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit ISeller(QObject *parent = 0);
|
||||
virtual ~ISeller();
|
||||
|
||||
virtual void prepareItem() = 0;
|
||||
|
||||
signals:
|
||||
void itemPrepared(QSharedPointer<IShopItem> item, int count);
|
||||
};
|
||||
|
||||
#endif // ISELLER_H
|
Loading…
Reference in New Issue