]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/HLA/hla.hxx
Replace the NOAA METAR URL with the new, updated one
[flightgear.git] / src / Network / HLA / hla.hxx
index d843160c28b63648b2c1f1534924048e936243b9..8a77d2704225b01f013244e1918b012dae5474f6 100644 (file)
 
 #include <simgear/compiler.h>
 #include <simgear/structure/SGSharedPtr.hxx>
-#include <simgear/props/props.hxx>
 
 #include <string>
 #include <vector>
 #include <Network/protocol.hxx>
 
-namespace simgear {
-class HLAFederate;
-class HLAObjectClass;
-class HLAObjectInstance;
-}
-
 class FGHLA : public FGProtocol {
 public:
     FGHLA(const std::vector<std::string>& tokens);
@@ -45,6 +38,10 @@ public:
 private:
     /// All the utility classes we need currently
     class XMLConfigReader;
+    class MPUpdateCallback;
+    class MPReflectCallback;
+    class MultiplayerObjectInstance;
+    class MultiplayerObjectClass;
     class Federate;
 
     /// The configuration parameters extracted from the tokens in the constructor
@@ -54,10 +51,6 @@ private:
 
     /// The toplevel rti class
     SGSharedPtr<Federate> _hlaFederate;
-    /// This class that is used to send register the local instance
-    SGSharedPtr<simgear::HLAObjectClass> _localAircraftClass;
-    /// The local aircraft instance
-    SGSharedPtr<simgear::HLAObjectInstance> _localAircraftInstance;
 };
 
 #endif // _FG_HLA_HXX