]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIStatic.cxx
Merge branch 'next' into attenuation
[flightgear.git] / src / AIModel / AIStatic.cxx
index 24d29bdc219a1f0e39e7c7f67f89cac8ab22cec8..5ac1f4ce3aa2a78e007eb4208e9250050a315640 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"
 
 
-FGAIStatic::FGAIStatic() : FGAIBase(otStatic) {
+FGAIStatic::FGAIStatic() : FGAIBase(otStatic, false) {
 }
 
 
 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() {