diff options
Diffstat (limited to 'qicclient')
-rw-r--r-- | qicclient/client.hxx | 9 |
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(); }; |