Initial Melodic commit.
authorWalter Fetter Lages <w.fetter@ieee.org>
Sun, 18 Nov 2018 04:27:37 +0000 (02:27 -0200)
committerWalter Fetter Lages <w.fetter@ieee.org>
Sun, 18 Nov 2018 04:27:37 +0000 (02:27 -0200)
CMakeLists.txt
include/voltage_controllers/joint_effort_controller.h
include/voltage_controllers/joint_position_controller.h
package.xml

index 5742c94..7d68652 100644 (file)
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8.3)
 project(voltage_controllers)
 
 ## Compile as C++11, supported in ROS Kinetic and newer
-add_compile_options(-std=c++11)
+add_compile_options(-std=c++11)
 
 ## Find catkin macros and libraries
 ## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
@@ -182,11 +182,11 @@ install(TARGETS ${PROJECT_NAME}
 )
 
 ## Mark cpp header files for installation
-install(DIRECTORY include/${PROJECT_NAME}/
-#   DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
+install(DIRECTORY include/${PROJECT_NAME}/
+   DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
 #   FILES_MATCHING PATTERN "*.h"
 #   PATTERN ".svn" EXCLUDE
-)
+)
 
 ## Mark other files for installation (e.g. launch and bag files, etc.)
 install(FILES
index 6ffd59d..23bed46 100644 (file)
@@ -175,7 +175,7 @@ public:
   double getEffort();
 
   hardware_interface::JointHandle joint_;
-  boost::shared_ptr<const urdf::Joint> joint_urdf_;
+  urdf::JointConstSharedPtr joint_urdf_;
   realtime_tools::RealtimeBuffer<Commands> command_;
   Commands command_struct_; // pre-allocated memory that is re-used to set the realtime buffer
 
index 1adce92..228def0 100644 (file)
@@ -175,7 +175,7 @@ public:
   double getPosition();
 
   hardware_interface::JointHandle joint_;
-  boost::shared_ptr<const urdf::Joint> joint_urdf_;
+  urdf::JointConstSharedPtr joint_urdf_;
   realtime_tools::RealtimeBuffer<Commands> command_;
   Commands command_struct_; // pre-allocated memory that is re-used to set the realtime buffer
 
index 43607ee..3ebc850 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <package>
   <name>voltage_controllers</name>
-  <version>0.0.0</version>
+  <version>0.1.0</version>
   <description>The voltage_controllers package</description>
 
   <!-- One maintainer tag required, multiple allowed, one person per tag -->