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

Remove fix that became unnecessary due to upstream changes

parent de13b74a
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,6 @@ set(SLICE_FILES
units/GraspCandidateProviderInterface.ice
units/KITProstheticHandInterface.ice
units/RobotUnit/NJointController.ice
units/RobotUnit/CommonDataStructures.ice
units/RobotUnit/NJointTrajectoryController.ice
units/RobotUnit/NJointCartesianVelocityController.ice
units/RobotUnit/NJointCartesianTorqueController.ice
......
/*
* This file is part of ArmarX.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package ArmarX::RobotAPI
* @author Raphael Grimm
* @copyright 2020 Humanoids Group, H2T, KIT
* @license http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#pragma once
#include <ArmarXCore/interface/serialization/Eigen.ice>
module armarx
{
struct FTSensorValue
{
long timestampInUs = 0;
Eigen::Vector3f force;
Eigen::Vector3f torque;
};
};
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