ModuleMerge.h 341 B

123456789101112131415161718
  1. #ifndef MODULEMERGE_H
  2. #define MODULEMERGE_H
  3. #include "ModuleBase.h"
  4. namespace mdd {
  5. class ModuleMerge : public ModuleBase {
  6. private:
  7. public:
  8. ModuleMerge();
  9. int addModuleInput();
  10. int removeModuleInput();
  11. std::string setInputType(const std::string& input_id, const std::string& new_type);
  12. state update() override;
  13. };
  14. }
  15. #endif