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.
20 lines
451 B
C++
20 lines
451 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<QSharedPointer<ShopItem> > shopItems() override;
|
|
void addedToVoucher(int itemId, int countAdded) override;
|
|
};
|
|
|
|
#endif // COMMODITYSERVICE_H
|