Revision 13:0d4048bfadbb Event.h

View differences:

Event.h
16 16
#ifndef _EVENT_H_
17 17
#define _EVENT_H_
18 18

  
19
#include <vector>
19
#include <list>
20 20

  
21 21
struct Event {
22 22
    double time;
......
34 34
    }
35 35
};
36 36

  
37
typedef std::vector<Event> EventList;
37
typedef std::list<Event> EventList;
38 38

  
39 39
#endif
40 40

  

Also available in: Unified diff