ActionData.h
579 Bytes
//
// ActionData.h
// SteveMaggieCpp
//
// Created by Katarzyna Kalinowska-Górska on 23.05.2017.
//
//
#ifndef ActionData_h
#define ActionData_h
#include <stdio.h>
#include <string>
#include <vector>
#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<std::string> objectNames;
rapidjson::Value* actionJSON;
};
#endif /* ActionData_h */