NotePairScore


A NotePairScore represents a sequence of MIDI messages which may be played by a NotePairScorePlayer. A NotePairScore can be created by reading it from a file, or by creating it from a Recorder.

class NotePairScore {
public:
  NotePairScore(const ScoreCreationInfo*);
  ~NotePairScore();
};
NotePairScore(const ScoreCreationInfo sci*)
This constructor creates a NotePairScore from the information specified by sci. The data from sci is copied, so the user can free sci anytime after the constructor returns. (This is why a UtilPtr is not needed.)
~NotePairScore()
The destructor destroys the NotePairScore.

Modified 1 June 1996 pepellet@mit.edu