Skip to content

Commit

Permalink
Move fields in TaskComposerPluginFactory back to end of class
Browse files Browse the repository at this point in the history
  • Loading branch information
johnwason committed Dec 5, 2024
1 parent 651e6d1 commit 0536d09
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,6 @@ class TaskComposerExecutorFactory

class TaskComposerPluginFactory
{
private:
struct Implementation;
std::unique_ptr<Implementation> impl_;

public:
using PluginInfoMap = std::map<std::string, tesseract_common::PluginInfo>;

Expand Down Expand Up @@ -307,6 +303,10 @@ class TaskComposerPluginFactory
* @return The plugin information config yaml node/
*/
YAML::Node getConfig() const;

private:
struct Implementation;
std::unique_ptr<Implementation> impl_;
};
} // namespace tesseract_planning
#endif // TESSERACT_TASK_COMPOSER_TASK_COMPOSER_FACTORY_H

0 comments on commit 0536d09

Please sign in to comment.