]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/HTTPClient.hxx
Interim windows build fix
[flightgear.git] / src / Network / HTTPClient.hxx
index 341b39dee428722437c8fbdc2f295e89beb147d3..3a92ee1ef1a29a23d9cc6ad226257fdd47ab8066 100644 (file)
@@ -37,11 +37,21 @@ public:
     simgear::HTTP::Client const* client() const { return _http.get(); }
     
     virtual void init();
+    virtual void postinit();
     virtual void shutdown();
     virtual void update(double);
 
+    bool isDefaultCatalogInstalled() const;
+    void addDefaultCatalog();
+
+    std::string getDefaultCatalogId() const;
+    std::string getDefaultCatalogUrl() const;
 private:
+    class FGDelegate;
+    
+    bool _inited;
     std::auto_ptr<simgear::HTTP::Client> _http;
+    std::auto_ptr<FGDelegate> _packageDelegate;
 };
 
 #endif // FG_HTTP_CLIENT_HXX