Skip to content

Commit

Permalink
[MSA] Virtual Destructors (#1324)
Browse files Browse the repository at this point in the history
  • Loading branch information
DLu committed Jun 7, 2022
1 parent 4f3b718 commit 91e6f17
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ MOVEIT_CLASS_FORWARD(SetupConfig); // Defines SetupConfigPtr, ConstPtr, WeakPtr
class SetupConfig
{
public:
virtual ~SetupConfig() = default;

/**
* @brief Called after construction to initialize the step
* @param config_data Pointer to all the other configs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ class GeneratedFile : public std::enable_shared_from_this<GeneratedFile>
{
}

virtual ~GeneratedFile() = default;

/**
* @brief Returns the path relative to the configuration package root
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ class SetupStepWidget : public QWidget
{
Q_OBJECT
public:
virtual ~SetupStepWidget() = default;

/**
* @brief Called after construction to initialize the step
* @param parent_node Shared pointer to the parent node
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ namespace moveit_setup
class SetupStep
{
public:
virtual ~SetupStep() = default;

/**
* @brief Called after construction to initialize the step
* @param parent_node Shared pointer to the parent node
Expand Down

0 comments on commit 91e6f17

Please sign in to comment.