123456789101112131415 |
- #ifndef MDD_OUTPUT_H
- #define MDD_OUTPUT_H
- #include "IOutput.h"
- #include "IModule.h"
- class Output : IOutput{
- private:
- rapidjson::Value _value;
- public:
- Output(std::shared_ptr<IModule> parent, rapidjson::Value& initial);
- const rapidjson::Value& getValue();
- rapidjson::Value& getValueInternal();
- };
- #endif
|