ToyStaticActionParser.h
529 Bytes
//
//  ToyStaticActionParser.h
//  SteveMaggieCpp
//
//  Created by Katarzyna Kalinowska-Górska on 21.05.2017.
//
//
#ifndef ToyStaticActionParser_h
#define ToyStaticActionParser_h
#include "json/document.h"
#include "ToyJSONParseUtils.h"
class ToyStaticActionParser
{
    public:
    
        static const std::string ACTION_TYPE_PLAY_SOUND;
        static const std::string ACTION_TYPE_DISMISS_DIALOG;
    
        static void parseStaticAction(const rapidjson::Value& actionJson);
};
#endif /* ToyStaticActionParser_h */
