]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIStatic.cxx
Improve timing statistics
[flightgear.git] / src / AIModel / AIStatic.cxx
index 24d29bdc219a1f0e39e7c7f67f89cac8ab22cec8..83be7c8d60ded55d3d1e58ed90907dd261dcc927 100644 (file)
 //
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 #ifdef HAVE_CONFIG_H
 #  include <config.h>
 #endif
 
-#include <simgear/math/point3d.hxx>
 #include <Main/fg_props.hxx>
 #include <Main/globals.hxx>
 #include <Scenery/scenery.hxx>
 #include <string>
 #include <math.h>
 
-SG_USING_STD(string);
+using std::string;
 
 #include "AIStatic.hxx"
 
@@ -41,8 +40,8 @@ FGAIStatic::FGAIStatic() : FGAIBase(otStatic) {
 FGAIStatic::~FGAIStatic() {
 }
 
-bool FGAIStatic::init() {
-   return FGAIBase::init();
+bool FGAIStatic::init(bool search_in_AI_path) {
+   return FGAIBase::init(search_in_AI_path);
 }
 
 void FGAIStatic::bind() {