diff options
| author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-06-28 09:32:04 +0800 |
|---|---|---|
| committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-06-28 09:32:04 +0800 |
| commit | 5d4ca393157362cb9e82022c1f66c61a66ad9077 (patch) | |
| tree | b5f1cf586c3e3d9a3fba45631e80fe543139428c /qicclient/client.hxx | |
| parent | 0d2a18b15d45d612f3b9ba92d7b7af23be7d444f (diff) | |
Catalog updates from fellow C++ catalog
Diffstat (limited to 'qicclient/client.hxx')
| -rw-r--r-- | qicclient/client.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qicclient/client.hxx b/qicclient/client.hxx index b73c6a2..a87f83f 100644 --- a/qicclient/client.hxx +++ b/qicclient/client.hxx @@ -1,15 +1,15 @@ #ifndef QICCLIENT_CLIENT_HXX #define QICCLIENT_CLIENT_HXX -#include <memory> #include <QObject> -struct icclient_catalog; struct icclient_ord_order; struct icclient_user; namespace ICClient { + using std::shared_ptr; + class Catalog; class Product; class Client : public QObject @@ -70,8 +70,8 @@ namespace ICClient { */ signals: - void gotResults(icclient_catalog* catalog); - void gotFlyPage(std::shared_ptr<Product> product); + void gotResults(Catalog* catalog); + void gotFlyPage(shared_ptr<Product> product); void ordered(icclient_ord_order* order); void loggedIn(icclient_user* user); void loggedOut(); |