A few more RtError updates in documentation and .dsp files.

This commit is contained in:
Gary Scavone
2014-04-11 09:52:02 -04:00
parent a239b58651
commit a9a654862f
6 changed files with 6 additions and 19 deletions

View File

@@ -2,8 +2,9 @@ The Synthesis ToolKit in C++ (STK)
By Perry R. Cook and Gary P. Scavone, 1995--2014.
v4.4.5: (?? April 2014)
- updated versions of RtAudio and RtMidi
v4.5.0: (?? April 2014)
- updated versions of RtAudio and RtMidi, with associated renaming of RtError class to either RtAudioError or RtMidiError
v4.4.4: (24 August 2012)
- new FreeVerb class (thanks to Greg Burlet)

View File

@@ -1,6 +1,6 @@
/*! \page fundamentals STK Fundamentals
The Synthesis ToolKit is implemented in the C++ programming language. STK does not attempt to provide a new programming environment or paradigm but rather provides a set of objects that can be used within a normal C++ programming framework. Therefore, it is expected that users of STK will have some familiarity with C/C++ programming concepts. That said, the STK classes do have some particular idiosyncrasies that we will mention here. Starting with STK version 4.4, all STK classes except RtAudio, RtMidi, and RtError are defined within the stk namespace.
The Synthesis ToolKit is implemented in the C++ programming language. STK does not attempt to provide a new programming environment or paradigm but rather provides a set of objects that can be used within a normal C++ programming framework. Therefore, it is expected that users of STK will have some familiarity with C/C++ programming concepts. That said, the STK classes do have some particular idiosyncrasies that we will mention here. Starting with STK version 4.4, all STK classes except RtAudio and RtMidi are defined within the stk namespace.
\section Signal Computations:

View File

@@ -212,7 +212,7 @@ int main( int argc,char *argv[] )
try {
midiin = new RtMidiIn();
}
catch (RtError &error) {
catch (RtMidiError &error) {
error.printMessage();
if ( file != NULL ) fclose( file );
exit(EXIT_FAILURE);
@@ -233,7 +233,7 @@ int main( int argc,char *argv[] )
try {
midiin->openPort( port );
}
catch (RtError &error) {
catch (RtMidiError &error) {
error.printMessage();
goto cleanup;
}

View File

@@ -151,11 +151,6 @@ SOURCE=..\..\include\RtAudio.h
# End Source File
# Begin Source File
SOURCE=..\..\include\RtError.h
# End Source File
# End Group
# Begin Group "Resource Files"
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
# End Group
# End Target

View File

@@ -151,11 +151,6 @@ SOURCE=..\..\include\RtAudio.h
# End Source File
# Begin Source File
SOURCE=..\..\include\RtError.h
# End Source File
# End Group
# Begin Group "Resource Files"
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
# End Group
# End Target

View File

@@ -99,10 +99,6 @@ SOURCE=..\..\src\RtMidi.cpp
# PROP Default_Filter "h;hpp;hxx;hm;inl"
# Begin Source File
SOURCE=..\..\include\RtError.h
# End Source File
# Begin Source File
SOURCE=..\..\include\RtMidi.h
# End Source File
# End Group