summaryrefslogtreecommitdiff
path: root/qicclient
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-26 22:04:11 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-26 22:04:11 +0800
commit3fdde5e115af1edf084a81ead04adbca49d39e88 (patch)
tree4e777ff0354328fa136b79bd81a6037a07b17e5e /qicclient
parentd614c6c8bd12c2a01ab5ef90e34f068bfb019e25 (diff)
All products related signal and slot
Diffstat (limited to 'qicclient')
-rw-r--r--qicclient/client.hxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/qicclient/client.hxx b/qicclient/client.hxx
index 14c3652..481f9bb 100644
--- a/qicclient/client.hxx
+++ b/qicclient/client.hxx
@@ -2,6 +2,9 @@
#define QRTCLIENT_CLIENT_HXX
#include <QObject>
+#include <icclient/product.h>
+
+struct icclient_catalog;
namespace ICClient {
@@ -13,11 +16,17 @@ namespace ICClient {
Client(char const* url, char const* certificate = nullptr);
~Client();
+ void productAll(icclient_catalog** catalogptr
+ , size_t (*callback)(void* contents
+ , size_t size, size_t nmemb
+ , void* userdata));
+
public slots:
void logIn(QString const& username, QString const& password);
void logOut();
signals:
+ void gotProductAll(icclient_catalog*);
void loggedIn(QString const& username);
void loggedOut();
};