summaryrefslogtreecommitdiff
path: root/client.cxx
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-06-14 17:04:07 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-06-14 17:04:07 +0800
commit997ac1ef848ec9cf14ad2ab69c78a8ef230864e7 (patch)
tree9fa5b7008cfb703db2f1de62df3136aa20e9f240 /client.cxx
parent3ee30003e4ba237575c23ba9f585c9ca40d003e5 (diff)
Flypage member function
Diffstat (limited to 'client.cxx')
-rw-r--r--client.cxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/client.cxx b/client.cxx
index 8484387..e459e27 100644
--- a/client.cxx
+++ b/client.cxx
@@ -22,6 +22,15 @@ namespace ICClient {
emit gotAllProducts(catalog);
}
+ void Client::flyPage(size_t (*handler)(void* contents, size_t size,
+ size_t nmemb, void* userdata),
+ QString const& sku)
+ {
+ icclient_product* product = nullptr;
+ icclient_flypage(handler, &product, sku.toLatin1().constData());
+ emit gotFlyPage(product);
+ }
+
void Client::order(icclient_ord_order** orderPtr, QString const& sku
, icclient_catalog* catalog)
{