diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-06-19 10:58:31 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-06-19 10:58:31 +0800 |
commit | 9d6608227a46e62f81b0bad78f12406ba29819cc (patch) | |
tree | cb5fb60b7d753b9200ef941232eab608a68c101b /interchange | |
parent | a6cfa494405bef00571ef676ac153c21622946f9 (diff) |
Ord items list now contain pointers to the Items
so that it can contain subclasses of Item, since the ones contained are
just the pointers. The space reserved for an Item wouldn't be enough for
a subclass' additional members. The space reserved for *a pointer to* an
Item, on the other hand, should be enough for a later casted pointer to
something derived from an Item.
Diffstat (limited to 'interchange')
-rw-r--r-- | interchange/ord.hxx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/interchange/ord.hxx b/interchange/ord.hxx index 302e6db..390d415 100644 --- a/interchange/ord.hxx +++ b/interchange/ord.hxx @@ -48,7 +48,7 @@ namespace QInterchange { Ord() {} explicit Ord(struct interchange_ord_order *order, QObject* parent = nullptr); - ~Ord() {} + virtual ~Ord() { for (auto item : items) delete item; } int rowCount(QModelIndex const& parent = QModelIndex()) const Q_DECL_OVERRIDE; QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE; @@ -76,13 +76,16 @@ namespace QInterchange { protected: QHash<int, QByteArray> roleNames() const Q_DECL_OVERRIDE; void init(struct interchange_ord_order *order); - void addItem(Item const &item); - const Item &itemAt(int row) const { return items[row]; } + void addItem(Item *item); + const Item *itemAt(int row) const + { + return items.at(row); + } void emitUpdate(const QString &response); void emitTransaction(QString const& response); private: - QList<Item> items; + QList<Item *> items; QString profile; double m_subtotal; double m_shipping; |