mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 19:23:59 +00:00
25 lines
404 B
C++
25 lines
404 B
C++
/*
|
|
* VLSoundOut.h
|
|
* Vocalese
|
|
*
|
|
* Created by Matthias Neeracher on 12/18/05.
|
|
* Copyright 2005 __MyCompanyName__. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#include "VLModel.h"
|
|
|
|
class VLSoundOut {
|
|
public:
|
|
static VLSoundOut * Instance();
|
|
|
|
virtual void PlayNote(const VLNote & note) = 0;
|
|
virtual void PlayChord(const VLChord & chord) = 0;
|
|
|
|
virtual ~VLSoundOut();
|
|
};
|
|
|
|
// Local Variables:
|
|
// mode:C++
|
|
// End:
|