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.
|
#ifndef ISHOPITEM_H
|
|
#define ISHOPITEM_H
|
|
|
|
#include "shop_global.h"
|
|
#include <QDecDouble.hh>
|
|
#include <QString>
|
|
|
|
class SHOPSHARED_EXPORT IShopItem
|
|
{
|
|
|
|
public:
|
|
QString name() = 0;
|
|
QDecDouble unitPrice() = 0;
|
|
};
|
|
|
|
#endif // ISHOPITEM_H
|