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
316 B
C

#ifndef ISHOPITEM_H
#define ISHOPITEM_H
#include "shop_global.h"
#include <QDecDouble.hh>
#include <QString>
class SHOPSHARED_EXPORT IShopItem
{
public:
virtual int id() = 0;
virtual QString name() = 0;
virtual QDecDouble unitPrice() = 0;
virtual QString pluginId() = 0;
};
#endif // ISHOPITEM_H