![]() |
Holds TraceEvent instances. More...
Classes | |
| class | const_iterator |
| Bidirectional iterator of TraceEvents. More... | |
Public Types | |
| using | const_reverse_iterator = std::reverse_iterator< const_iterator > |
Public Member Functions | |
| TraceEventContainer () | |
| Constructor. More... | |
| TraceEventContainer (TraceEventContainer &&) | |
| Move Constructor. More... | |
| TraceEventContainer & | operator= (TraceEventContainer &&) |
| Move Assignment. More... | |
| TraceEventContainer (const TraceEventContainer &)=delete | |
| TraceEventContainer & | operator= (const TraceEventContainer &)=delete |
| TRACE_API void | Append (TraceEventContainer &&other) |
Append the events in other to the end of this container. More... | |
Subset of stl container interface. | |
| template<class... Args> | |
| TraceEvent & | emplace_back (Args &&...args) |
| const_iterator | begin () const |
| const_iterator | end () const |
| const_reverse_iterator | rbegin () const |
| const_reverse_iterator | rend () const |
| bool | empty () const |
Holds TraceEvent instances.
This container only allows appending events at the end and supports both forward and reverse iteration.
Definition at line 45 of file eventContainer.h.
Constructor.
Move Constructor.
| TRACE_API void Append | ( | TraceEventContainer && | other | ) |
Append the events in other to the end of this container.
This takes ownership of the events that were in other.
| TraceEventContainer& operator= | ( | TraceEventContainer && | ) |
Move Assignment.