]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/generic.hxx
Sync. w. JSBSim CVS
[flightgear.git] / src / Network / generic.hxx
index ed5d1c368783e4887b949127af59f293ba4d1bef..1d07b1265efefa034699a14767ab62e34208e060 100644 (file)
 
 #include <simgear/compiler.h>
 
-#include STL_STRING
+#include <string>
 
 #include "protocol.hxx"
 
-SG_USING_STD(string);
+using std::string;
 
 
 class FGGeneric : public FGProtocol {
@@ -53,6 +53,8 @@ public:
     // close the channel
     bool close();
 
+    void setExitOnError(bool val) { exitOnError = val; }
+    bool getExitOnError() { return exitOnError; }
 protected:
 
     enum e_type { FG_BOOL=0, FG_INT, FG_DOUBLE, FG_STRING };
@@ -85,7 +87,7 @@ private:
     int binary_footer_value;
 
     void read_config(SGPropertyNode *root, vector<_serial_prot> &msg);
-
+    bool exitOnError;
 };