mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 11:14:00 +00:00
29 lines
463 B
C++
29 lines
463 B
C++
|
/*
|
||
|
* TVLSoundOut.cpp
|
||
|
* Vocalese
|
||
|
*
|
||
|
* Created by Matthias Neeracher on 12/19/05.
|
||
|
* Copyright 2005 __MyCompanyName__. All rights reserved.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "VLSoundOut.h"
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
int main(int, char *const [])
|
||
|
{
|
||
|
std::string chordName;
|
||
|
VLSoundOut * soundOut = VLSoundOut::Instance();
|
||
|
|
||
|
while (std::cin >> chordName) {
|
||
|
VLChord chord(chordName);
|
||
|
|
||
|
soundOut->PlayNote(chord);
|
||
|
usleep(250*1000);
|
||
|
soundOut->PlayChord(chord);
|
||
|
}
|
||
|
|
||
|
exit(0);
|
||
|
}
|