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