]> git.mxchange.org Git - flightgear.git/blobdiff - src/ATC/atcdialog.hxx
functional radio signal attenuation
[flightgear.git] / src / ATC / atcdialog.hxx
index 1a54debfbb7d8a6810d988c0c78dfbba0f1d75f2..f52b5b4f1852e0f7c20a8b2abdf6add13ea4c9f0 100644 (file)
 #include <GUI/gui.h>           // mkDialog
 #include <GUI/new_gui.hxx>
 
+typedef vector<string> StringVec;
+typedef vector<string>:: iterator StringVecIterator;
 
 static bool doATCDialog(const SGPropertyNode* arg);
 
 class FGATCDialogNew {
 private:
      NewGUI *_gui;
-     bool dialogVisible;       
+     bool dialogVisible;
+     StringVec commands;
 public:
 
     FGATCDialogNew();
@@ -56,8 +59,10 @@ public:
 
     void update(double dt);
     void PopupDialog();
+    void addEntry(int, string);
+    void removeEntry(int);
 };
 
-extern FGATCDialogNew *current_atcdialog;
+extern FGATCDialogNew *currentATCDialog;
 
 #endif // _ATC_DIALOG_HXX_
\ No newline at end of file