]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIBase.hxx
Merge branch 'next' into durk-atc
[flightgear.git] / src / AIModel / AIBase.hxx
index 2f83623310c89f178ba42ff517f65920fcd7fd5b..fa68074012da14be211c01c6e64caf0b17414cc6 100644 (file)
@@ -304,6 +304,8 @@ public:
         SGPropertyNode *prop_root);
 
     static bool _isNight();
+
+     string & getCallSign();
 };
 
 inline void FGAIBase::setManager(FGAIManager* mgr, SGPropertyNode* p) {
@@ -364,6 +366,10 @@ inline void FGAIBase::setLatitude ( double latitude ) {
 inline void FGAIBase::setCallSign(const string& s) {
     _callsign = s;
 }
+inline string& FGAIBase::getCallSign() {
+    return _callsign;
+}
+
 inline void FGAIBase::setXoffset(double x) {
     _x_offset = x;
 }