Skip to content

Commit

Permalink
Update to tesseract_common and tesseract_environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Armstrong committed Jan 2, 2025
1 parent c5b91bb commit a3a9bf1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions common/src/environment_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@

#include <tesseract_collision/core/common.h>
#include <tesseract_common/yaml_utils.h>
#include <tesseract_common/yaml_extenstions.h>

#include <console_bridge/console.h>

Expand Down
4 changes: 2 additions & 2 deletions manipulation/src/manipulation_widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ struct ManipulationWidget::Implementation
/** @brief If true adding and removing states is disabled */
bool use_parent_component_info{ false };

tesseract_kinematics::KinematicGroup::UPtr kin_group;
tesseract_kinematics::KinematicGroup::ConstPtr kin_group;
QStringList state_names;
tesseract_environment::Environment::Ptr environment;
std::unordered_map<std::string, std::unordered_map<std::string, double>> states;
Expand Down Expand Up @@ -614,7 +614,7 @@ void ManipulationWidget::onReset()

for (const auto& group_name : env->getGroupNames())
{
tesseract_kinematics::KinematicGroup::UPtr kin_group;
tesseract_kinematics::KinematicGroup::ConstPtr kin_group;
try
{
kin_group = env->getKinematicGroup(group_name);
Expand Down
2 changes: 2 additions & 0 deletions studio/src/studio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@

#include <tesseract_common/plugin_loader.hpp>
#include <tesseract_common/yaml_utils.h>
#include <tesseract_common/yaml_extenstions.h>
#include <tesseract_common/filesystem.h>

#include <boost/program_options.hpp>

Expand Down
2 changes: 1 addition & 1 deletion tool_path/src/models/tool_path_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <tesseract_qt/common/tool_path.h>

#include <tesseract_common/yaml_utils.h>

#include <tesseract_common/yaml_extenstions.h>
#include <tesseract_common/eigen_serialization.h>
#include <tesseract_common/serialization.h>
#include <boost/serialization/vector.hpp>
Expand Down

0 comments on commit a3a9bf1

Please sign in to comment.