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.
19 lines
389 B
C
19 lines
389 B
C
8 years ago
|
#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;
|
||
|
};
|
||
|
|
||
|
#endif // COMMODITYSERVICE_H
|