#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 parent, rapidjson::Value& initial); const rapidjson::Value& getValue(); rapidjson::Value& getValueInternal(); }; #endif