Skip to content
Snippets Groups Projects
Commit 873611ab authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Add doxygen

parent b13307df
No related branches found
No related tags found
No related merge requests found
......@@ -752,14 +752,6 @@ namespace armarx
*/
void rtDeactivateControllerBecauseOfError();
public:
static const NJointControllerPtr NullPtr;
......@@ -802,10 +794,15 @@ namespace armarx
// ///////////////////////////////////////// data ///////////////////////////////////////// //
// //////////////////////////////////////////////////////////////////////////////////////// //
private:
/// @brief reference to the owning \ref RobotUnit
RobotUnit& robotUnit;
/// @brief Maps names of used \ref ControlDevice "ControlDevices" to the \ref JointController "JointController's" control mode
StringStringDictionary controlDeviceControlModeMap;
/// @brief Maps names of used \ref ControlDevice "ControlDevices" to the used \ref JointController for this \ref ControlDevice
std::map<std::string, const JointController*> controlDeviceUsedJointController;
/// @brief Bitmap of used \ref ControlDevice "ControlDevices" (1 == used, 0 == not used)
std::vector<char> controlDeviceUsedBitmap;
/// @brief Indices of used \ref ControlDevice "ControlDevices"
std::vector<std::size_t> controlDeviceUsedIndices;
//this data is filled by the robot unit to provide convenience functions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment