mirror of
https://github.com/thestk/stk
synced 2026-01-11 20:11:52 +00:00
Version 4.4.0
This commit is contained in:
committed by
Stephen Sinclair
parent
d199342e86
commit
eccd8c9981
@@ -1,3 +1,14 @@
|
||||
#ifndef STK_MIDIFILEIN_H
|
||||
#define STK_MIDIFILEIN_H
|
||||
|
||||
#include "Stk.h"
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <fstream>
|
||||
#include <sstream>
|
||||
|
||||
namespace stk {
|
||||
|
||||
/**********************************************************************/
|
||||
/*! \class MidiFileIn
|
||||
\brief A standard MIDI file reading/parsing class.
|
||||
@@ -11,19 +22,10 @@
|
||||
Tempo changes are internally tracked by the class and reflected in
|
||||
the values returned by the function getTickSeconds().
|
||||
|
||||
by Gary P. Scavone, 2003.
|
||||
by Gary P. Scavone, 2003 - 2009.
|
||||
*/
|
||||
/**********************************************************************/
|
||||
|
||||
#ifndef STK_MIDIFILEIN_H
|
||||
#define STK_MIDIFILEIN_H
|
||||
|
||||
#include "Stk.h"
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <fstream>
|
||||
#include <sstream>
|
||||
|
||||
class MidiFileIn : public Stk
|
||||
{
|
||||
public:
|
||||
@@ -128,4 +130,6 @@ class MidiFileIn : public Stk
|
||||
std::vector<unsigned int> trackTempoIndex_;
|
||||
};
|
||||
|
||||
} // stk namespace
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user