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
524 B
C++
22 lines
524 B
C++
#ifndef COMMODITYSERVICE_H
|
|
#define COMMODITYSERVICE_H
|
|
|
|
#include <service.h>
|
|
#include <isellableservice.h>
|
|
#include "data/commodity-data.h"
|
|
|
|
class CommodityService : public Service<CommodityData>, public ISellableService
|
|
{
|
|
public:
|
|
CommodityService();
|
|
|
|
// ISellableService interface
|
|
public:
|
|
QList<ShopItemPtr> shopItems() override;
|
|
void addedToVoucher(int itemId, int countAdded) override;
|
|
virtual ShopItemPtr shopItem(int itemId) override;
|
|
ISeller *seller() override;
|
|
};
|
|
|
|
#endif // COMMODITYSERVICE_H
|