X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAIModel%2FAIMultiplayer.hxx;h=6b30685aab218708b006ed9ec69e49cdf19d5ff4;hb=47a7952f893dcb3d0b1372907cac375fedf81703;hp=7fec2d05779408fff27c72c1d348936019a1f55c;hpb=e48967cb1de18922fb148f05fe56966af917688f;p=flightgear.git diff --git a/src/AIModel/AIMultiplayer.hxx b/src/AIModel/AIMultiplayer.hxx index 7fec2d057..6b30685aa 100755 --- a/src/AIModel/AIMultiplayer.hxx +++ b/src/AIModel/AIMultiplayer.hxx @@ -32,7 +32,7 @@ public: FGAIMultiplayer(); virtual ~FGAIMultiplayer(); - virtual bool init(); + virtual bool init(bool search_in_AI_path=false); virtual void bind(); virtual void unbind(); virtual void update(double dt); @@ -40,11 +40,6 @@ public: void addMotionInfo(const FGExternalMotionData& motionInfo, long stamp); void setDoubleProperty(const std::string& prop, double val); - void setCallSign(const string& callSign) - { mCallSign = callSign; } - const char* getCallSign(void) const - { return mCallSign.c_str(); } - long getLastTimestamp(void) const { return mLastTimestamp; } @@ -77,8 +72,6 @@ private: typedef std::map > PropertyMap; PropertyMap mPropertyMap; - std::string mCallSign; - double mTimeOffset; bool mTimeOffsetSet;