#include "EVNT.hpp" namespace DataSpec::DNAMP1 { template void EVNT::Enumerate(typename Op::StreamT& s) { Do(athena::io::PropId{"version"}, version, s); DoSize(athena::io::PropId{"boolPOICount"}, boolPOICount, s); Do(athena::io::PropId{"boolPOINodes"}, boolPOINodes, boolPOICount, s); DoSize(athena::io::PropId{"int32POICount"}, int32POICount, s); Do(athena::io::PropId{"int32POINodes"}, int32POINodes, int32POICount, s); DoSize(athena::io::PropId{"particlePOICount"}, particlePOICount, s); Do(athena::io::PropId{"particlePOINodes"}, particlePOINodes, particlePOICount, s); if (version == 2) { DoSize(athena::io::PropId{"soundPOICount"}, soundPOICount, s); Do(athena::io::PropId{"soundPOINodes"}, soundPOINodes, soundPOICount, s); } } AT_SPECIALIZE_DNA_YAML(EVNT) std::string_view EVNT::DNAType() { return "DNAMP1::EVNT"sv; } } // namespace DataSpec::DNAMP1