Inheritance diagram for TestRobot::TestRobotPlatform:
Public Methods | |
TestRobotPlatform () | |
virtual String | className () const |
virtual bool | isMobile () const |
< is the robot mobile, or fixed (e.g. to the floor)? More... | |
virtual bool | isHolonomic () const |
< if mobile, is the platform capable of holonomic movement. More... | |
virtual base::Dimension3 | getDimensions () const |
< physical platform bounding dimensions (Length, Width, Thickness). More... | |
virtual String | getName () const |
virtual bool | isSameKindAs (const ReferencedObject &) const |
virtual bool | isSameKindAs (const Object &) const |
void | reference () const |
bool | unreference () const |
const int | referenceCount () const |
void | enableOnUnreferenceCall (bool enabled) |
virtual void | onUnreference () const |
Protected Attributes | |
bool | mobile |
bool | holonomic |
base::Dimension3 | dimensions |
String | name |
int | _refCount |
bool | onUnreferenceEnabled |
|
Definition at line 86 of file TestRobot.cpp. References base::Dimension3, robot::Platform::dimensions, robot::Platform::holonomic, and robot::Platform::mobile. |
|
return the name of the object's class type. Must be defined by derived classes. Implements base::Object. Definition at line 58 of file TestRobot.cpp. References base::className, and base::String. |
|
If enabled, each call to unreference() will also call virtual method onUnreference() Definition at line 108 of file Referenced. References base::Referenced::onUnreferenceEnabled. Referenced by robot::control::ControllableAdaptor::ControllableAdaptor. |
|
< physical platform bounding dimensions (Length, Width, Thickness).
Definition at line 48 of file Platform. References robot::Platform::dimensions. |
|
Definition at line 41 of file RobotPart. References robot::RobotPart::name, and base::String. Referenced by robot::SerialManipulator::serialize. |
|
< if mobile, is the platform capable of holonomic movement.
Definition at line 45 of file Platform. References robot::Platform::holonomic. |
|
< is the robot mobile, or fixed (e.g. to the floor)?
Definition at line 43 of file Platform. References robot::Platform::mobile. |
|
|
|
Definition at line 58 of file ReferencedObject. |
|
Called by unreference() if enabled via enableOnUnreferenceCall(true). Typically overridden in subclasses that wish to know about unreference() calls - for example to handle manually breaking cyclic references Reimplemented in robot::control::ControllableAdaptor::AdaptorControlInterface. Definition at line 114 of file Referenced. Referenced by base::Referenced::unreference. |
|
Increment the reference count by one, indicating that this object has another pointer which is referencing it. Definition at line 58 of file Referenced. References base::Referenced::_refCount. Referenced by robot::control::kinematics::FullSpaceSolver::reduceA. |
|
Return the number pointers currently referencing this object. Definition at line 105 of file Referenced. References base::Referenced::_refCount. Referenced by robot::control::ControllableAdaptor::onUnreference, and robot::control::ControllableAdaptor::AdaptorControlInterface::onUnreference. |
|
Decrement the reference count by one, indicating that a pointer to this object is referencing it. If the refence count goes to zero, it is assumed that this object is nolonger referenced and is automatically deleted. Definition at line 74 of file Referenced. References base::Referenced::_refCount, Exception, and base::Referenced::onUnreference. |
|
Definition at line 129 of file Referenced. Referenced by base::Referenced::reference, base::Referenced::referenceCount, base::Referenced::Referenced, base::Referenced::unreference, and base::Referenced::~Referenced. |
|
Definition at line 62 of file Platform. Referenced by robot::Platform::getDimensions, robot::Platform::Platform, and TestRobotPlatform. |
|
Definition at line 60 of file Platform. Referenced by robot::Platform::isHolonomic, robot::Platform::Platform, and TestRobotPlatform. |
|
Definition at line 59 of file Platform. Referenced by robot::Platform::isMobile, robot::Platform::Platform, and TestRobotPlatform. |
|
|
Definition at line 130 of file Referenced. Referenced by base::Referenced::enableOnUnreferenceCall, and base::Referenced::Referenced. |