Skip to content

Commit

Permalink
refactor(bpp): clang-tidy for scene module interface
Browse files Browse the repository at this point in the history
Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
  • Loading branch information
zulfaqar-azmi-t4 committed Nov 30, 2023
1 parent 4887bdc commit d5ca651
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@

#include <algorithm>
#include <any>
#include <limits>
#include <memory>
#include <random>
#include <string>
#include <unordered_map>
#include <utility>
Expand Down Expand Up @@ -101,6 +99,10 @@ class SceneModuleInterface
}
}

SceneModuleInterface(const SceneModuleInterface &) = delete;
SceneModuleInterface(SceneModuleInterface &&) = delete;
SceneModuleInterface & operator=(const SceneModuleInterface &) = delete;
SceneModuleInterface & operator=(SceneModuleInterface &&) = delete;
virtual ~SceneModuleInterface() = default;

virtual void updateModuleParams(const std::any & parameters) = 0;
Expand Down Expand Up @@ -364,10 +366,6 @@ class SceneModuleInterface

StopReason stop_reason_;

bool is_simultaneously_executable_as_approved_module_{false};

bool is_simultaneously_executable_as_candidate_module_{false};

bool is_locked_new_module_launch_{false};

bool is_locked_output_path_{false};
Expand Down

0 comments on commit d5ca651

Please sign in to comment.