]> git.mxchange.org Git - flightgear.git/blobdiff - JSBsim/FGOutput.h
New changes to address various feedback from initial release.
[flightgear.git] / JSBsim / FGOutput.h
index bed5b5a317e30bf731080deaf0980a77aceb01be..2ec4e7a95cd491fe7ce0811aee2c6ca20788aaca 100644 (file)
@@ -26,9 +26,8 @@
 HISTORY
 --------------------------------------------------------------------------------
 12/02/98   JSB   Created
-*******************************************************************************/
 
-/*******************************************************************************
+********************************************************************************
 SENTRY
 *******************************************************************************/
 
@@ -48,25 +47,20 @@ CLASS DECLARATION
 class FGOutput : public FGModel
 {
 public:
-  FGOutput(void);
+  FGOutput(FGFDMExec*);
   ~FGOutput(void);
+
   bool Run(void);
+
   void ConsoleOutput(void);
   void DelimitedOutput(void);
 
 protected:
 
-
 private:
   bool FirstPass;
 };
 
-#ifndef FDM_MAIN
-extern FGOutput* Output;
-#else
-FGOutput* Output;
-#endif
-
 /******************************************************************************/
 #endif