mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 17:47:21 +02:00
19 lines
327 B
C++
19 lines
327 B
C++
//
|
|
// Created by Johnathon Slightham on 2025-07-15.
|
|
//
|
|
|
|
#ifndef ACTUATORFACTORY_H
|
|
#define ACTUATORFACTORY_H
|
|
|
|
#include "IActuator.h"
|
|
#include "flatbuffers_generated/RobotModule_generated.h"
|
|
|
|
class ActuatorFactory {
|
|
public:
|
|
static std::unique_ptr<IActuator> create_actuator(ModuleType type);
|
|
};
|
|
|
|
|
|
|
|
#endif //ACTUATORFACTORY_H
|