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.
22 lines
476 B
C++
22 lines
476 B
C++
#ifndef ISELLABLESERVICE_H
|
|
#define ISELLABLESERVICE_H
|
|
|
|
#include "shop_global.h"
|
|
#include "shopitem.h"
|
|
#include "iseller.h"
|
|
#include <QList>
|
|
#include <QSharedPointer>
|
|
|
|
class SHOPSHARED_EXPORT ISellableService
|
|
{
|
|
public:
|
|
ISellableService();
|
|
|
|
virtual QList<IShopItemPtr> shopItems() = 0;
|
|
virtual IShopItemPtr shopItem(int itemId) = 0;
|
|
virtual void addedToVoucher(int itemId, int countAdded) = 0;
|
|
virtual ISeller *seller() = 0;
|
|
};
|
|
|
|
#endif // ISELLABLESERVICE_H
|