You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
382 B
C++
23 lines
382 B
C++
#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
|