diff options
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(); |