Skip to content

Commit

Permalink
Support moving AllowedCollisionMatrix into tesseract_common namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
mpowelson authored and Levi-Armstrong committed Dec 6, 2021
1 parent 7604d42 commit 4fbbbee
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion tesseract_monitoring/src/contact_monitor_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ TESSERACT_COMMON_IGNORE_WARNINGS_POP

#include <tesseract_environment/environment.h>
#include <tesseract_scene_graph/graph.h>
#include <tesseract_scene_graph/utils.h>
#include <tesseract_srdf/srdf_model.h>
#include <tesseract_urdf/urdf_parser.h>
#include <tesseract_rosutils/utils.h>
Expand Down
1 change: 0 additions & 1 deletion tesseract_monitoring/src/environment_monitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ TESSERACT_COMMON_IGNORE_WARNINGS_POP

#include <tesseract_monitoring/environment_monitor.h>
#include <tesseract_environment/utils.h>
#include <tesseract_scene_graph/utils.h>
#include <tesseract_rosutils/utils.h>

namespace tesseract_monitoring
Expand Down
2 changes: 1 addition & 1 deletion tesseract_rosutils/include/tesseract_rosutils/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ tesseract_scene_graph::Joint fromMsg(const tesseract_msgs::Joint& joint_msg);
* @return True if successful, otherwise false
*/
bool toMsg(std::vector<tesseract_msgs::AllowedCollisionEntry>& acm_msg,
const tesseract_scene_graph::AllowedCollisionMatrix& acm);
const tesseract_common::AllowedCollisionMatrix& acm);

void toMsg(tesseract_msgs::SceneGraph& scene_graph_msg, const tesseract_scene_graph::SceneGraph& scene_graph);

Expand Down
2 changes: 1 addition & 1 deletion tesseract_rosutils/src/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,7 @@ toMsg(const tesseract_common::CollisionMarginOverrideType& contact_margin_overri
}

bool toMsg(std::vector<tesseract_msgs::AllowedCollisionEntry>& acm_msg,
const tesseract_scene_graph::AllowedCollisionMatrix& acm)
const tesseract_common::AllowedCollisionMatrix& acm)
{
for (const auto& entry : acm.getAllAllowedCollisions())
{
Expand Down
2 changes: 1 addition & 1 deletion tesseract_rviz/src/render_tools/visualization_widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "tesseract_rviz/render_tools/visualization_widget.h"
#include "tesseract_rviz/render_tools/joint_widget.h"
#include "tesseract_rviz/render_tools/link_widget.h"
#include "tesseract_scene_graph/allowed_collision_matrix.h"
#include "tesseract_common/allowed_collision_matrix.h"

#include <tesseract_common/macros.h>
TESSERACT_COMMON_IGNORE_WARNINGS_PUSH
Expand Down

0 comments on commit 4fbbbee

Please sign in to comment.