]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/External.cxx
Add a link library needed by Irix.
[flightgear.git] / src / FDM / External.cxx
index 8790762d3ef9a91bbfb6625d6f17c01c71807dad..b0406dc38bd47bd645a9a5520bc1ea2502a3d819 100644 (file)
 #include "External.hxx"
 
 
+FGExternal::FGExternal( double dt ) {
+    set_delta_t( dt );
+}
+
+
+FGExternal::~FGExternal() {
+}
+
+
 // Initialize the External flight model, dt is the time increment
 // for each subsequent iteration through the EOM
-bool FGExternal::init( double dt ) {
+void FGExternal::init() {
     // cout << "FGExternal::init()" << endl;
-
-    // set valid time for this record
-    stamp_time();
-
-    return true;
 }