// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #include "VNIfEventParser.hpp" #include "VNSceneEventsParser.hpp" using namespace Dawn; std::vector VNIfEventParser::getRequiredAttributes() { return { "key", "value" }; } std::map VNIfEventParser::getOptionalAttributes() { return {}; } int32_t VNIfEventParser::onParse( Xml *node, std::map values, struct VNIfEvent *out, std::string *error ) { //Get the key and value out->key = values["key"]; out->value = values["value"]; return (VNSceneEventsParser()).parse(node, &out->events, error); }