| 58 | bool Event::GetPolarity() const { return _polarity; } |
| 59 | |
| 60 | EventArray::EventArray(double timestamp, const std::vector<Event::Ptr>& events) |
| 61 | : _timestamp(timestamp), |
| 62 | _events(events) {} |
| 63 | |
| 64 | EventArray::Ptr EventArray::Create(double timestamp, const std::vector<Event::Ptr>& events) { |
| 65 | return std::make_shared<EventArray>(timestamp, events); |
nothing calls this directly
no outgoing calls
no test coverage detected