remove json_object fwd decl
[staging/windowmanager.git] / AFBClient.h
index c6da6f7..05fa5a5 100644 (file)
@@ -3,12 +3,8 @@
 
 #include <functional>
 
-extern "C"
-{
-   struct json_object;
-   struct afb_wsj1;
-   struct sd_event;
-}
+struct afb_wsj1;
+struct sd_event;
 
 class AFBClient
 {
@@ -31,7 +27,7 @@ public:
     static AFBClient &instance();
 
     int init(int port, char const *token);
-    int dispatch(uint64_t timeout);
+    int dispatch();
 
     // WM API
     int requestSurface(const char *label);
@@ -43,9 +39,6 @@ public:
           std::function<void(char const *label)> f);
 
 private:
-    int call(const char *verb, json_object *object,
-          std::function<void(bool ok, json_object*)> onReply);
-
     struct afb_wsj1 *wsj1;
     struct sd_event *loop;
 };