Version 4.4.3

This commit is contained in:
Gary Scavone
2013-09-29 23:21:29 +02:00
committed by Stephen Sinclair
parent baca57040b
commit 0aec39260a
223 changed files with 26190 additions and 11130 deletions

View File

@@ -40,10 +40,10 @@ class MidiFileIn : public Stk
~MidiFileIn();
//! Return the MIDI file format (0, 1, or 2).
int getFileFormat() const;
int getFileFormat() const { return format_; };
//! Return the number of tracks in the MIDI file.
unsigned int getNumberOfTracks() const;
unsigned int getNumberOfTracks() const { return nTracks_; };
//! Return the MIDI file division value from the file header.
/*!
@@ -51,7 +51,7 @@ class MidiFileIn : public Stk
MIDI File Specification. In particular, if the MSB is set, the
file uses time-code representations for delta-time values.
*/
int getDivision() const;
int getDivision() const { return division_; };
//! Move the specified track event reader to the beginning of its track.
/*!