1234567891011121314151617181920 |
- #ifndef MDD_IOUTPUT_H
- #define MDD_IOUTPUT_H
- #include "json.hpp"
- #include <memory>
- #include "IUnique.h"
- #include "IState.h"
- namespace mdd
- {
- class IModule;
- class IOutput : public IUnique, public IState{
- public:
- virtual const json& getValue() = 0;
- virtual json& getValueInternal() = 0;
- virtual ~IOutput() = default;
- };
- }
- #endif //MDD_IOUTPUT_H
|