FlightGear next
|
#include <AIBase.hxx>
Inherits SGReferenced.
Inherited by FGAIBallistic, FGAIBaseAircraft, FGAIMultiplayer, FGAIShip, FGAIStatic, FGAIStorm, and FGAIThermal.
Public Types | |
enum class | object_type { otNull = 0 , otAircraft , otShip , otCarrier , otBallistic , otRocket , otStorm , otThermal , otStatic , otWingman , otGroundVehicle , otEscort , otMultiplayer , MAX_OBJECTS } |
enum class | ModelSearchOrder { DATA_ONLY , PREFER_AI , PREFER_DATA } |
Public Member Functions | |
FGAIBase (object_type ot, bool enableHot) | |
virtual | ~FGAIBase () |
virtual void | readFromScenario (SGPropertyNode *scFileNode) |
virtual bool | init (ModelSearchOrder searchOrder) |
virtual void | initModel () |
virtual void | update (double dt) |
virtual void | bind () |
virtual void | unbind () |
virtual void | reinit () |
virtual double | getDefaultModelRadius () |
void | updateLOD () |
update LOD properties of the model | |
void | updateInterior () |
void | setManager (FGAIManager *mgr, SGPropertyNode *p) |
void | setPath (const char *model) |
void | setPathLowres (std::string model) |
void | setFallbackModelIndex (const int i) |
void | setSMPath (const std::string &p) |
void | setCallSign (const std::string &) |
void | setSpeed (double speed_KTAS) |
void | setMaxSpeed (double kts) |
void | setAltitude (double altitude_ft) |
void | setAltitudeAGL (double altitude_agl_ft) |
void | setHeading (double heading) |
void | setLatitude (double latitude) |
void | setLongitude (double longitude) |
void | setBank (double bank) |
void | setPitch (double newpitch) |
void | setRadius (double radius) |
void | setXoffset (double x_offset) |
void | setYoffset (double y_offset) |
void | setZoffset (double z_offset) |
void | setPitchoffset (double x_offset) |
void | setRolloffset (double y_offset) |
void | setYawoffset (double z_offset) |
void | setServiceable (bool serviceable) |
bool | getDie () |
void | setDie (bool die) |
bool | isValid () const |
void | setCollisionData (bool i, double lat, double lon, double elev) |
void | setImpactData (bool d) |
void | setImpactLat (double lat) |
void | setImpactLon (double lon) |
void | setImpactElev (double e) |
void | setName (const std::string &n) |
bool | setParentNode () |
void | setParentName (const std::string &p) |
void | setCollisionLength (int range) |
void | setCollisionHeight (int height) |
void | calcRangeBearing (double lat, double lon, double lat2, double lon2, double &range, double &bearing) const |
double | calcRelBearingDeg (double bearing, double heading) |
double | calcTrueBearingDeg (double bearing, double heading) |
double | calcRecipBearingDeg (double bearing) |
int | getID () const |
int | _getSubID () const |
void | setFlightPlan (std::unique_ptr< FGAIFlightPlan > f) |
SGGeod | getGeodPos () const |
void | setGeodPos (const SGGeod &pos) |
SGVec3d | getCartPosAt (const SGVec3d &off) const |
SGVec3d | getCartPos () const |
bool | getGroundElevationM (const SGGeod &pos, double &elev, const simgear::BVHMaterial **material) const |
SGPropertyNode * | getPositionFromNode (SGPropertyNode *scFileNode, const std::string &key, SGVec3d &position) |
double | getTrueHeadingDeg () const |
double | _getCartPosX () const |
double | _getCartPosY () const |
double | _getCartPosZ () const |
osg::LOD * | getSceneBranch () const |
virtual int | getCollisionHeight () const |
virtual int | getCollisionLength () const |
bool | modelLoaded () const |
void | setScenarioPath (const std::string &scenarioPath) |
object_type | getType () |
virtual std::string_view | getTypeString (void) const |
bool | isa (object_type otype) |
void | _setVS_fps (double _vs) |
void | _setAltitude (double _alt) |
void | _setLongitude (double longitude) |
void | _setLatitude (double latitude) |
void | _setSubID (int s) |
double | _getAltitudeAGL (SGGeod inpos, double start) |
double | _getVS_fps () const |
double | _getAltitude () const |
double | _getLongitude () const |
double | _getLatitude () const |
double | _getElevationFt () const |
double | _getRdot () const |
double | _getH_offset () const |
double | _getV_offset () const |
double | _getX_shift () const |
double | _getY_shift () const |
double | _getRotation () const |
double | _getSpeed () const |
double | _getRoll () const |
double | _getPitch () const |
double | _getHeading () const |
double | _get_speed_east_fps () const |
double | _get_speed_north_fps () const |
double | _get_SubPath () const |
double | _getImpactLat () const |
double | _getImpactLon () const |
double | _getImpactElevFt () const |
double | _getImpactHdg () const |
double | _getImpactPitch () const |
double | _getImpactRoll () const |
double | _getImpactSpeed () const |
double | _getXOffset () const |
double | _getYOffset () const |
double | _getZOffset () const |
bool | _getServiceable () const |
bool | _getFirstTime () const |
bool | _getImpact () |
bool | _getImpactData () |
bool | _getCollisionData () |
bool | _getExpiryData () |
SGPropertyNode * | _getProps () const |
const char * | _getPath () const |
const char * | _getSMPath () const |
const char * | _getCallsign () const |
const char * | _getTriggerNode () const |
const char * | _getName () const |
const char * | _getSubmodel () const |
int | _getFallbackModelIndex () const |
double | _getRange () const |
double | _getBearing () const |
const std::string & | getCallSign () const |
ModelSearchOrder | getSearchOrder () const |
Static Public Member Functions | |
static bool | _isNight () |
Static Public Attributes | |
static const double | e = 2.71828183 |
static const double | lbs_to_slugs = 0.031080950172 |
Protected Member Functions | |
template<typename T> | |
void | tie (const char *aRelPath, const SGRawValue< T > &aRawValue) |
Tied-properties helper, record nodes which are tied for easy un-tie-ing. | |
void | Transform () |
double | UpdateRadar (FGAIManager *manager) |
void | removeModel () |
Cleanly remove the model and let the scenery database pager do the clean-up work. | |
void | removeSoundFx () |
Static Protected Member Functions | |
static int | _newAIModelID () |
Definition at line 38 of file AIBase.hxx.
|
strong |
Enumerator | |
---|---|
DATA_ONLY | |
PREFER_AI | |
PREFER_DATA |
Definition at line 63 of file AIBase.hxx.
|
strong |
Enumerator | |
---|---|
otNull | |
otAircraft | |
otShip | |
otCarrier | |
otBallistic | |
otRocket | |
otStorm | |
otThermal | |
otStatic | |
otWingman | |
otGroundVehicle | |
otEscort | |
otMultiplayer | |
MAX_OBJECTS |
Definition at line 41 of file AIBase.hxx.
FGAIBase::FGAIBase | ( | object_type | ot, |
bool | enableHot ) |
Definition at line 146 of file AIBase.cxx.
|
virtual |
Definition at line 200 of file AIBase.cxx.
double FGAIBase::_get_speed_east_fps | ( | ) | const |
Definition at line 1014 of file AIBase.cxx.
double FGAIBase::_get_speed_north_fps | ( | ) | const |
Definition at line 1018 of file AIBase.cxx.
double FGAIBase::_get_SubPath | ( | ) | const |
double FGAIBase::_getAltitude | ( | ) | const |
Definition at line 1026 of file AIBase.cxx.
double FGAIBase::_getAltitudeAGL | ( | SGGeod | inpos, |
double | start ) |
Definition at line 1030 of file AIBase.cxx.
|
inline |
Definition at line 363 of file AIBase.hxx.
const char * FGAIBase::_getCallsign | ( | ) | const |
Definition at line 1140 of file AIBase.cxx.
double FGAIBase::_getCartPosX | ( | ) | const |
Definition at line 926 of file AIBase.cxx.
double FGAIBase::_getCartPosY | ( | ) | const |
Definition at line 931 of file AIBase.cxx.
double FGAIBase::_getCartPosZ | ( | ) | const |
Definition at line 936 of file AIBase.cxx.
bool FGAIBase::_getCollisionData | ( | ) |
Definition at line 1052 of file AIBase.cxx.
double FGAIBase::_getElevationFt | ( | ) | const |
Definition at line 1002 of file AIBase.cxx.
bool FGAIBase::_getExpiryData | ( | ) |
Definition at line 1056 of file AIBase.cxx.
int FGAIBase::_getFallbackModelIndex | ( | ) | const |
Definition at line 1148 of file AIBase.cxx.
bool FGAIBase::_getFirstTime | ( | ) | const |
double FGAIBase::_getH_offset | ( | ) | const |
double FGAIBase::_getHeading | ( | ) | const |
Definition at line 1112 of file AIBase.cxx.
bool FGAIBase::_getImpact | ( | ) |
bool FGAIBase::_getImpactData | ( | ) |
Definition at line 1060 of file AIBase.cxx.
double FGAIBase::_getImpactElevFt | ( | ) | const |
Definition at line 1072 of file AIBase.cxx.
double FGAIBase::_getImpactHdg | ( | ) | const |
Definition at line 1084 of file AIBase.cxx.
double FGAIBase::_getImpactLat | ( | ) | const |
Definition at line 1064 of file AIBase.cxx.
double FGAIBase::_getImpactLon | ( | ) | const |
Definition at line 1068 of file AIBase.cxx.
double FGAIBase::_getImpactPitch | ( | ) | const |
Definition at line 1076 of file AIBase.cxx.
double FGAIBase::_getImpactRoll | ( | ) | const |
Definition at line 1080 of file AIBase.cxx.
double FGAIBase::_getImpactSpeed | ( | ) | const |
Definition at line 1088 of file AIBase.cxx.
double FGAIBase::_getLatitude | ( | ) | const |
Definition at line 998 of file AIBase.cxx.
double FGAIBase::_getLongitude | ( | ) | const |
Definition at line 994 of file AIBase.cxx.
const char * FGAIBase::_getName | ( | ) | const |
Definition at line 1136 of file AIBase.cxx.
const char * FGAIBase::_getPath | ( | ) | const |
Definition at line 1128 of file AIBase.cxx.
double FGAIBase::_getPitch | ( | ) | const |
Definition at line 1108 of file AIBase.cxx.
SGPropertyNode * FGAIBase::_getProps | ( | ) | const |
Definition at line 1040 of file AIBase.cxx.
|
inline |
Definition at line 362 of file AIBase.hxx.
double FGAIBase::_getRdot | ( | ) | const |
Definition at line 1006 of file AIBase.cxx.
double FGAIBase::_getRoll | ( | ) | const |
Definition at line 1104 of file AIBase.cxx.
double FGAIBase::_getRotation | ( | ) | const |
bool FGAIBase::_getServiceable | ( | ) | const |
Definition at line 1036 of file AIBase.cxx.
const char * FGAIBase::_getSMPath | ( | ) | const |
Definition at line 1132 of file AIBase.cxx.
double FGAIBase::_getSpeed | ( | ) | const |
Definition at line 1100 of file AIBase.cxx.
int FGAIBase::_getSubID | ( | ) | const |
Definition at line 1096 of file AIBase.cxx.
const char * FGAIBase::_getSubmodel | ( | ) | const |
Definition at line 1144 of file AIBase.cxx.
const char * FGAIBase::_getTriggerNode | ( | ) | const |
double FGAIBase::_getV_offset | ( | ) | const |
double FGAIBase::_getVS_fps | ( | ) | const |
Definition at line 1010 of file AIBase.cxx.
double FGAIBase::_getX_shift | ( | ) | const |
double FGAIBase::_getXOffset | ( | ) | const |
Definition at line 1116 of file AIBase.cxx.
double FGAIBase::_getY_shift | ( | ) | const |
double FGAIBase::_getYOffset | ( | ) | const |
Definition at line 1120 of file AIBase.cxx.
double FGAIBase::_getZOffset | ( | ) | const |
Definition at line 1124 of file AIBase.cxx.
|
static |
Definition at line 1048 of file AIBase.cxx.
|
staticprotected |
Definition at line 1152 of file AIBase.cxx.
void FGAIBase::_setAltitude | ( | double | _alt | ) |
Definition at line 1044 of file AIBase.cxx.
void FGAIBase::_setLatitude | ( | double | latitude | ) |
Definition at line 945 of file AIBase.cxx.
void FGAIBase::_setLongitude | ( | double | longitude | ) |
Definition at line 941 of file AIBase.cxx.
void FGAIBase::_setSubID | ( | int | s | ) |
Definition at line 949 of file AIBase.cxx.
void FGAIBase::_setVS_fps | ( | double | _vs | ) |
Definition at line 1022 of file AIBase.cxx.
|
virtual |
Reimplemented in FGAIAircraft, FGAIBallistic, FGAIBaseAircraft, FGAICarrier, FGAIEscort, FGAIGroundVehicle, FGAIMultiplayer, FGAIShip, FGAITanker, FGAIThermal, and FGAIWingman.
Definition at line 713 of file AIBase.cxx.
|
inline |
Definition at line 512 of file AIBase.hxx.
|
inline |
Definition at line 535 of file AIBase.hxx.
|
inline |
Definition at line 521 of file AIBase.hxx.
|
inline |
Definition at line 528 of file AIBase.hxx.
|
inline |
Definition at line 367 of file AIBase.hxx.
SGVec3d FGAIBase::getCartPos | ( | ) | const |
Definition at line 899 of file AIBase.cxx.
SGVec3d FGAIBase::getCartPosAt | ( | const SGVec3d & | off | ) | const |
Definition at line 881 of file AIBase.cxx.
|
inlinevirtual |
Definition at line 576 of file AIBase.hxx.
|
inlinevirtual |
Definition at line 583 of file AIBase.hxx.
|
inlinevirtual |
Reimplemented in FGAICarrier, and FGAIShip.
Definition at line 77 of file AIBase.hxx.
|
inline |
Definition at line 508 of file AIBase.hxx.
SGGeod FGAIBase::getGeodPos | ( | ) | const |
Definition at line 1182 of file AIBase.cxx.
bool FGAIBase::getGroundElevationM | ( | const SGGeod & | pos, |
double & | elev, | ||
const simgear::BVHMaterial ** | material ) const |
Definition at line 904 of file AIBase.cxx.
int FGAIBase::getID | ( | ) | const |
Definition at line 1092 of file AIBase.cxx.
SGPropertyNode * FGAIBase::getPositionFromNode | ( | SGPropertyNode * | scFileNode, |
const std::string & | key, | ||
SGVec3d & | position ) |
Definition at line 910 of file AIBase.cxx.
osg::LOD * FGAIBase::getSceneBranch | ( | ) | const |
Definition at line 1172 of file AIBase.cxx.
|
inline |
Definition at line 368 of file AIBase.hxx.
|
inline |
Definition at line 152 of file AIBase.hxx.
|
inline |
Definition at line 510 of file AIBase.hxx.
|
inlinevirtual |
Reimplemented in FGAIAircraft, FGAIBallistic, FGAICarrier, FGAIEscort, FGAIGroundVehicle, FGAIMultiplayer, FGAIShip, FGAIStatic, FGAIStorm, FGAISwiftAircraft, FGAITanker, FGAIThermal, and FGAIWingman.
Definition at line 301 of file AIBase.hxx.
|
virtual |
Reimplemented in FGAIBallistic, FGAICarrier, FGAIEscort, FGAIGroundVehicle, FGAIMultiplayer, FGAIShip, FGAIThermal, and FGAIWingman.
Definition at line 633 of file AIBase.cxx.
|
virtual |
Definition at line 687 of file AIBase.cxx.
bool FGAIBase::isa | ( | object_type | otype | ) |
Definition at line 709 of file AIBase.cxx.
bool FGAIBase::isValid | ( | ) | const |
Definition at line 1166 of file AIBase.cxx.
bool FGAIBase::modelLoaded | ( | ) | const |
Definition at line 1177 of file AIBase.cxx.
|
virtual |
Reimplemented in FGAIAircraft, FGAIBallistic, FGAICarrier, FGAIEscort, FGAIGroundVehicle, FGAIShip, FGAIStorm, FGAITanker, FGAIThermal, and FGAIWingman.
Definition at line 249 of file AIBase.cxx.
|
inlinevirtual |
Reimplemented in FGAIBallistic, FGAIEscort, FGAIGroundVehicle, FGAIShip, and FGAIWingman.
Definition at line 74 of file AIBase.hxx.
|
protected |
Cleanly remove the model and let the scenery database pager do the clean-up work.
Definition at line 218 of file AIBase.cxx.
|
protected |
Definition at line 808 of file AIBase.cxx.
|
inline |
Definition at line 419 of file AIBase.hxx.
|
inline |
Definition at line 425 of file AIBase.hxx.
|
inline |
Definition at line 430 of file AIBase.hxx.
|
inline |
Definition at line 451 of file AIBase.hxx.
void FGAIBase::setCollisionData | ( | bool | i, |
double | lat, | ||
double | lon, | ||
double | elev ) |
|
inline |
Definition at line 501 of file AIBase.hxx.
|
inline |
Definition at line 496 of file AIBase.hxx.
|
inline |
Definition at line 506 of file AIBase.hxx.
|
inline |
Definition at line 389 of file AIBase.hxx.
void FGAIBase::setFlightPlan | ( | std::unique_ptr< FGAIFlightPlan > | f | ) |
Definition at line 1161 of file AIBase.cxx.
void FGAIBase::setGeodPos | ( | const SGGeod & | pos | ) |
Definition at line 1187 of file AIBase.cxx.
|
inline |
Definition at line 414 of file AIBase.hxx.
void FGAIBase::setImpactData | ( | bool | d | ) |
void FGAIBase::setImpactElev | ( | double | e | ) |
void FGAIBase::setImpactLat | ( | double | lat | ) |
void FGAIBase::setImpactLon | ( | double | lon | ) |
|
inline |
Definition at line 446 of file AIBase.hxx.
|
inline |
Definition at line 441 of file AIBase.hxx.
|
inline |
Definition at line 373 of file AIBase.hxx.
|
inline |
Definition at line 542 of file AIBase.hxx.
|
inline |
Definition at line 491 of file AIBase.hxx.
|
inline |
Definition at line 486 of file AIBase.hxx.
bool FGAIBase::setParentNode | ( | ) |
Definition at line 953 of file AIBase.cxx.
|
inline |
Definition at line 379 of file AIBase.hxx.
|
inline |
Definition at line 384 of file AIBase.hxx.
|
inline |
Definition at line 436 of file AIBase.hxx.
|
inline |
Definition at line 471 of file AIBase.hxx.
|
inline |
Definition at line 409 of file AIBase.hxx.
|
inline |
Definition at line 476 of file AIBase.hxx.
void FGAIBase::setScenarioPath | ( | const std::string & | scenarioPath | ) |
Definition at line 244 of file AIBase.cxx.
|
inline |
Definition at line 399 of file AIBase.hxx.
|
inline |
Definition at line 394 of file AIBase.hxx.
|
inline |
Definition at line 404 of file AIBase.hxx.
|
inline |
Definition at line 456 of file AIBase.hxx.
|
inline |
Definition at line 481 of file AIBase.hxx.
|
inline |
Definition at line 461 of file AIBase.hxx.
|
inline |
Definition at line 466 of file AIBase.hxx.
|
inlineprotected |
Tied-properties helper, record nodes which are tied for easy un-tie-ing.
Definition at line 198 of file AIBase.hxx.
|
protected |
Definition at line 518 of file AIBase.cxx.
|
virtual |
Reimplemented in FGAIAircraft.
Definition at line 800 of file AIBase.cxx.
|
virtual |
Reimplemented in FGAIAircraft, FGAIBallistic, FGAIEscort, FGAIGroundVehicle, FGAIMultiplayer, FGAIShip, FGAIStatic, FGAIStorm, FGAISwiftAircraft, FGAIThermal, and FGAIWingman.
Definition at line 294 of file AIBase.cxx.
void FGAIBase::updateInterior | ( | ) |
Definition at line 365 of file AIBase.cxx.
void FGAIBase::updateLOD | ( | ) |
update LOD properties of the model
Definition at line 388 of file AIBase.cxx.
|
protected |
Definition at line 819 of file AIBase.cxx.
|
protected |
Definition at line 188 of file AIBase.hxx.
|
protected |
Definition at line 267 of file AIBase.hxx.
|
protected |
Definition at line 172 of file AIBase.hxx.
|
protected |
Definition at line 268 of file AIBase.hxx.
|
protected |
Definition at line 252 of file AIBase.hxx.
|
protected |
Definition at line 272 of file AIBase.hxx.
|
protected |
Definition at line 273 of file AIBase.hxx.
|
protected |
Definition at line 270 of file AIBase.hxx.
|
protected |
Definition at line 271 of file AIBase.hxx.
|
protected |
Definition at line 274 of file AIBase.hxx.
|
protected |
Definition at line 266 of file AIBase.hxx.
|
protected |
Definition at line 275 of file AIBase.hxx.
|
protected |
Definition at line 276 of file AIBase.hxx.
|
protected |
Definition at line 259 of file AIBase.hxx.
|
protected |
Definition at line 182 of file AIBase.hxx.
|
protected |
Definition at line 190 of file AIBase.hxx.
|
protected |
Definition at line 191 of file AIBase.hxx.
|
protected |
Definition at line 187 of file AIBase.hxx.
|
protected |
Definition at line 178 of file AIBase.hxx.
|
protected |
Definition at line 179 of file AIBase.hxx.
|
protected |
Definition at line 192 of file AIBase.hxx.
|
protected |
Definition at line 278 of file AIBase.hxx.
|
protected |
Definition at line 204 of file AIBase.hxx.
|
protected |
Definition at line 260 of file AIBase.hxx.
|
protected |
Definition at line 189 of file AIBase.hxx.
|
protected |
Definition at line 203 of file AIBase.hxx.
|
protected |
Definition at line 174 of file AIBase.hxx.
|
protected |
Definition at line 175 of file AIBase.hxx.
|
protected |
Definition at line 180 of file AIBase.hxx.
|
protected |
Definition at line 176 of file AIBase.hxx.
|
protected |
Definition at line 253 of file AIBase.hxx.
|
protected |
Definition at line 223 of file AIBase.hxx.
|
protected |
Definition at line 218 of file AIBase.hxx.
|
protected |
Definition at line 239 of file AIBase.hxx.
|
protected |
Definition at line 184 of file AIBase.hxx.
|
protected |
Definition at line 185 of file AIBase.hxx.
|
protected |
Definition at line 255 of file AIBase.hxx.
|
static |
Definition at line 359 of file AIBase.hxx.
|
protected |
Definition at line 240 of file AIBase.hxx.
|
protected |
Definition at line 264 of file AIBase.hxx.
|
protected |
Definition at line 226 of file AIBase.hxx.
|
protected |
Definition at line 225 of file AIBase.hxx.
|
protected |
Definition at line 213 of file AIBase.hxx.
|
protected |
Definition at line 243 of file AIBase.hxx.
|
protected |
Definition at line 248 of file AIBase.hxx.
|
protected |
Definition at line 238 of file AIBase.hxx.
|
protected |
Definition at line 256 of file AIBase.hxx.
|
static |
Definition at line 360 of file AIBase.hxx.
|
protected |
Definition at line 262 of file AIBase.hxx.
|
protected |
Definition at line 209 of file AIBase.hxx.
|
protected |
Definition at line 250 of file AIBase.hxx.
|
protected |
Definition at line 251 of file AIBase.hxx.
|
protected |
Definition at line 208 of file AIBase.hxx.
|
protected |
Definition at line 257 of file AIBase.hxx.
|
protected |
Definition at line 215 of file AIBase.hxx.
|
protected |
Definition at line 212 of file AIBase.hxx.
|
protected |
Definition at line 205 of file AIBase.hxx.
|
protected |
Definition at line 241 of file AIBase.hxx.
|
protected |
Definition at line 242 of file AIBase.hxx.
|
protected |
Definition at line 207 of file AIBase.hxx.
|
protected |
Definition at line 214 of file AIBase.hxx.
|
protected |
Definition at line 247 of file AIBase.hxx.
|
protected |
Definition at line 258 of file AIBase.hxx.
|
protected |
Definition at line 216 of file AIBase.hxx.
|
protected |
Definition at line 221 of file AIBase.hxx.
|
protected |
Definition at line 217 of file AIBase.hxx.
|
protected |
Definition at line 220 of file AIBase.hxx.
|
protected |
Definition at line 230 of file AIBase.hxx.
|
protected |
Definition at line 229 of file AIBase.hxx.
|
protected |
Definition at line 233 of file AIBase.hxx.
|
protected |
Definition at line 232 of file AIBase.hxx.
|
protected |
Definition at line 231 of file AIBase.hxx.
|
protected |
Definition at line 235 of file AIBase.hxx.
|
protected |
Definition at line 234 of file AIBase.hxx.
|
protected |
Definition at line 206 of file AIBase.hxx.
|
protected |
Definition at line 222 of file AIBase.hxx.
|
protected |
Definition at line 244 of file AIBase.hxx.
|
protected |
Definition at line 219 of file AIBase.hxx.
|
protected |
Definition at line 245 of file AIBase.hxx.
|
protected |
Definition at line 246 of file AIBase.hxx.