mirror of
https://github.com/thestk/stk
synced 2026-02-07 17:56:16 +00:00
A few more RtError updates in documentation and .dsp files.
This commit is contained in:
@@ -2,8 +2,9 @@ The Synthesis ToolKit in C++ (STK)
|
|||||||
|
|
||||||
By Perry R. Cook and Gary P. Scavone, 1995--2014.
|
By Perry R. Cook and Gary P. Scavone, 1995--2014.
|
||||||
|
|
||||||
v4.4.5: (?? April 2014)
|
v4.5.0: (?? April 2014)
|
||||||
- updated versions of RtAudio and RtMidi
|
- updated versions of RtAudio and RtMidi, with associated renaming of RtError class to either RtAudioError or RtMidiError
|
||||||
|
|
||||||
|
|
||||||
v4.4.4: (24 August 2012)
|
v4.4.4: (24 August 2012)
|
||||||
- new FreeVerb class (thanks to Greg Burlet)
|
- new FreeVerb class (thanks to Greg Burlet)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*! \page fundamentals STK Fundamentals
|
/*! \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:
|
\section Signal Computations:
|
||||||
|
|
||||||
|
|||||||
@@ -212,7 +212,7 @@ int main( int argc,char *argv[] )
|
|||||||
try {
|
try {
|
||||||
midiin = new RtMidiIn();
|
midiin = new RtMidiIn();
|
||||||
}
|
}
|
||||||
catch (RtError &error) {
|
catch (RtMidiError &error) {
|
||||||
error.printMessage();
|
error.printMessage();
|
||||||
if ( file != NULL ) fclose( file );
|
if ( file != NULL ) fclose( file );
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
@@ -233,7 +233,7 @@ int main( int argc,char *argv[] )
|
|||||||
try {
|
try {
|
||||||
midiin->openPort( port );
|
midiin->openPort( port );
|
||||||
}
|
}
|
||||||
catch (RtError &error) {
|
catch (RtMidiError &error) {
|
||||||
error.printMessage();
|
error.printMessage();
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -151,11 +151,6 @@ SOURCE=..\..\include\RtAudio.h
|
|||||||
# End Source File
|
# End Source File
|
||||||
# Begin 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"
|
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||||
# End Group
|
# End Group
|
||||||
# End Target
|
# End Target
|
||||||
|
|||||||
@@ -151,11 +151,6 @@ SOURCE=..\..\include\RtAudio.h
|
|||||||
# End Source File
|
# End Source File
|
||||||
# Begin 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"
|
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||||
# End Group
|
# End Group
|
||||||
# End Target
|
# End Target
|
||||||
|
|||||||
@@ -99,10 +99,6 @@ SOURCE=..\..\src\RtMidi.cpp
|
|||||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||||
# Begin Source File
|
# Begin Source File
|
||||||
|
|
||||||
SOURCE=..\..\include\RtError.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\..\include\RtMidi.h
|
SOURCE=..\..\include\RtMidi.h
|
||||||
# End Source File
|
# End Source File
|
||||||
# End Group
|
# End Group
|
||||||
|
|||||||
Reference in New Issue
Block a user