diff options
Diffstat (limited to 'qicclient')
-rw-r--r-- | qicclient/client.hxx | 8 | ||||
-rw-r--r-- | qicclient/ord.hxx | 6 |
2 files changed, 6 insertions, 8 deletions
diff --git a/qicclient/client.hxx b/qicclient/client.hxx index 984996c..1939d3d 100644 --- a/qicclient/client.hxx +++ b/qicclient/client.hxx @@ -53,14 +53,6 @@ namespace QICClient { */ void order(QString const& sku, Catalog const& catalog, Ord& order); - public slots: - /* - void remove(unsigned int const& indices); - void checkout(); - void newItem(QString const& description, QString const& comment, - QString const& price, QString const& imagePath); - */ - signals: void gotResults(Catalog* catalog); void gotFlyPage(shared_ptr<Product> product); diff --git a/qicclient/ord.hxx b/qicclient/ord.hxx index a3be840..fc7802a 100644 --- a/qicclient/ord.hxx +++ b/qicclient/ord.hxx @@ -56,6 +56,12 @@ namespace QICClient { double shipping() const { return m_shipping; } double totalCost() const { return m_totalCost; } + /* + public slots: + void remove(unsigned int const& indices); + void checkout(); + */ + signals: void rowCountChanged(); void subtotalChanged(); |