To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / MIDIComposition.h @ 1:3e65e0344413

History | View | Annotate | Download (495 Bytes)

1
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */
2

    
3
/*
4
   This is a modified version of a source file from the 
5
   Rosegarden MIDI and audio sequencer and notation editor.
6
   This file copyright 2000-2006 Richard Bown and Chris Cannam.
7
*/
8

    
9
#ifndef _MIDI_COMPOSITION_H_
10
#define _MIDI_COMPOSITION_H_
11

    
12
#include "MIDIEvent.h"
13
#include <QLinkedList>
14
#include <QMap>
15

    
16
typedef QLinkedList<MIDIEvent> MIDITrack;
17
typedef QMap<unsigned int, MIDITrack> MIDIComposition;
18

    
19
#endif