diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-13 08:32:29 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-13 08:32:29 +0800 |
commit | 3bb1e0c14ac7adccadfb71aba33cf2fb54e91850 (patch) | |
tree | 5d8279df601e41577921f791c89059cde9dbdd5d /interchange/catalog.hxx | |
parent | c8ed6cbb4a3a9051fcc2536fd6e751da7a3264cf (diff) |
Catalog constructor takes a copy of the C struct
Diffstat (limited to 'interchange/catalog.hxx')
-rw-r--r-- | interchange/catalog.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/interchange/catalog.hxx b/interchange/catalog.hxx index 9e96a3e..115c30a 100644 --- a/interchange/catalog.hxx +++ b/interchange/catalog.hxx @@ -14,11 +14,11 @@ namespace QInterchange { public: Catalog(QObject* parent = nullptr) : QAbstractListModel{parent} {} - Catalog(struct interchange_catalog* catalog, QObject* parent = nullptr); - ~Catalog(); + Catalog(struct interchange_catalog catalog, + QObject* parent = nullptr); + ~Catalog() {} int rowCount(QModelIndex const& parent = QModelIndex()) const Q_DECL_OVERRIDE; QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE; - struct interchange_catalog const* constData() const { return m_data; } void addProduct(Product const& product); protected: @@ -26,7 +26,6 @@ namespace QInterchange { private: QList<Product> products; - struct interchange_catalog* m_data; }; } |