diff options
Diffstat (limited to 'qicclient')
-rw-r--r-- | qicclient/basket.hxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/qicclient/basket.hxx b/qicclient/basket.hxx index 8d697e6..af4d81c 100644 --- a/qicclient/basket.hxx +++ b/qicclient/basket.hxx @@ -38,24 +38,24 @@ namespace ICClient { Q_PROPERTY(double totalCost READ totalCost NOTIFY totalCostChanged) public: - explicit Basket(QObject* parent = nullptr) - : QAbstractListModel{parent} - , m_subtotal{.0} - , m_shipping{.0} - , m_totalCost{.0} + explicit Basket(QObject* parent = nullptr) : + QAbstractListModel{parent}, + m_subtotal{.0}, + m_shipping{.0}, + m_totalCost{.0} {} + int rowCount(QModelIndex const& parent + = QModelIndex()) const Q_DECL_OVERRIDE; QVariant data(const QModelIndex& index, int role = Qt::DisplayRole ) const Q_DECL_OVERRIDE; - int rowCount(QModelIndex const& parent - = QModelIndex()) const Q_DECL_OVERRIDE; + icclient_ord_order* data() { return m_data; } + void setData(icclient_ord_order* order); double subtotal() const { return m_subtotal; } double shipping() const { return m_shipping; } double totalCost() const { return m_totalCost; } - icclient_ord_order* c_order() { return order; } - void update(icclient_ord_order* order); signals: void rowCountChanged(); @@ -69,10 +69,10 @@ namespace ICClient { private: void addItem(Item const& item); QList<Item> items; + icclient_ord_order* m_data; double m_subtotal; double m_shipping; double m_totalCost; - icclient_ord_order* order; }; } |