// // ActionData.h // SteveMaggieCpp // // Created by Katarzyna Kalinowska-Górska on 23.05.2017. // // #ifndef ActionData_h #define ActionData_h #include #include #include #include "json/document.h" class ActionData { public: static const std::string ACTION_TYPE_SET_PROPERTY; ActionData(std::string actionType){ this->actionType = actionType; } std::string actionType; std::vector objectNames; rapidjson::Value* actionJSON; }; #endif /* ActionData_h */