]> git.mxchange.org Git - flightgear.git/blobdiff - src/Instrumentation/adf.hxx
Csaba HALASZ & Syd ADAMS: make radar font configurable
[flightgear.git] / src / Instrumentation / adf.hxx
index d43bdce600e16845ccb83b5d0f2f2483627d9175..69831a6f22093777c7bcb98f9c58591cdf2fa225 100644 (file)
@@ -51,7 +51,6 @@ class ADF : public SGSubsystem
 public:
 
     ADF ( SGPropertyNode *node );
-    ADF ();
     virtual ~ADF ();
 
     virtual void init ();
@@ -64,6 +63,9 @@ private:
     void search (double frequency, double longitude_rad,
                  double latitude_rad, double altitude_m);
 
+    string _name;
+    unsigned int _num;
+
     SGPropertyNode_ptr _longitude_node;
     SGPropertyNode_ptr _latitude_node;
     SGPropertyNode_ptr _altitude_node;
@@ -93,10 +95,7 @@ private:
     int _ident_count;
     time_t _last_ident_time;
     double _last_volume;
-
-    string name;
-    int num;
-    string adf_ident;
+    string _adf_ident;
 };