Revision 5:7fde3cc109dc MIDIComposition.h
| MIDIComposition.h | ||
|---|---|---|
| 34 | 34 |
#define _MIDI_COMPOSITION_H_ |
| 35 | 35 |
|
| 36 | 36 |
#include "MIDIEvent.h" |
| 37 |
#include <QLinkedList>
|
|
| 38 |
#include <QMap>
|
|
| 37 |
#include <vector>
|
|
| 38 |
#include <map>
|
|
| 39 | 39 |
|
| 40 |
typedef QLinkedList<MIDIEvent> MIDITrack;
|
|
| 41 |
typedef QMap<unsigned int, MIDITrack> MIDIComposition;
|
|
| 40 |
typedef std::vector<MIDIEvent> MIDITrack;
|
|
| 41 |
typedef std::map<unsigned int, MIDITrack> MIDIComposition;
|
|
| 42 | 42 |
|
| 43 | 43 |
#endif |
Also available in: Unified diff