X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAIModel%2FAIStatic.cxx;h=5ac1f4ce3aa2a78e007eb4208e9250050a315640;hb=c112b8b8e169a427e8cb0da871347e5c10031479;hp=24d29bdc219a1f0e39e7c7f67f89cac8ab22cec8;hpb=4bfd1722df24f5be89459b25010e5d7352720a7b;p=flightgear.git diff --git a/src/AIModel/AIStatic.cxx b/src/AIModel/AIStatic.cxx index 24d29bdc2..5ac1f4ce3 100644 --- a/src/AIModel/AIStatic.cxx +++ b/src/AIModel/AIStatic.cxx @@ -16,33 +16,32 @@ // // 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 #endif -#include #include
#include
#include #include #include -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() {