| 27 | static const char *const EVENT = "Event"; |
| 28 | |
| 29 | JSONTimelineDecoder::TimelineStatus JSONTimelineDecoder::CreateEntity(const Entity& entity) |
| 30 | { |
| 31 | JSONEntity jsonEntity(entity.m_Guid); |
| 32 | jsonEntity.SetType(ENTITY); |
| 33 | this->m_Model.jsonEntities.insert({entity.m_Guid, jsonEntity}); |
| 34 | return TimelineStatus::TimelineStatus_Success; |
| 35 | } |
| 36 | |
| 37 | JSONTimelineDecoder::TimelineStatus JSONTimelineDecoder::CreateEventClass(const EventClass& eventClass) |
| 38 | { |