C/C++
cprog598.txt
Associated article: C Programming
Tags: C/C++
Published source code accompanying the column by Al Stevens in which he implements a C++ version of the Midifile C function libraries that parse MIDI files. Also see MIDIFILE.ZIP
C Programming Column
by Al Stevens
Listing One
// ------ playmidi.cpp
#include <fstream>
#include <iostream>
#include "midifile.h"
class WmTellOverture : public MIDIFile {
void StartTrack(int trackno);
static int m_nNotes[][2];
public:
WmTellOverture(std::ofstream&...


