summaryrefslogtreecommitdiff
path: root/RtAudio.h
diff options
context:
space:
mode:
authorStephen Sinclair <radarsat1@gmail.com>2018-08-09 15:55:57 -0400
committerStephen Sinclair <radarsat1@gmail.com>2018-08-09 15:55:57 -0400
commitb296e4bfdb452cd76822f032188b4f05073adc86 (patch)
treed6f779a5f47fcd2ae303250d56a172ddc7d5d790 /RtAudio.h
parent975e28a00024150190e792c66ef72a91da268f2a (diff)
Remove the compiledApis vector.
Diffstat (limited to 'RtAudio.h')
-rw-r--r--RtAudio.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/RtAudio.h b/RtAudio.h
index 5b71fe8..9976541 100644
--- a/RtAudio.h
+++ b/RtAudio.h
@@ -402,14 +402,6 @@ class RTAUDIO_DLL_PUBLIC RtAudio
*/
static void getCompiledApi( std::vector<RtAudio::Api> &apis );
- //! A static function to determine the available compiled audio APIs.
- /*!
- The values returned in the std::vector can be compared against
- the enumerated list values. Note that there can be more than one
- API compiled for certain operating systems.
- */
- static const std::vector<RtAudio::Api>& getCompiledApis();
-
//! Return the name of a specified compiled audio API.
/*!
This obtains a short lower-case name used for identification purposes.
@@ -619,9 +611,6 @@ class RTAUDIO_DLL_PUBLIC RtAudio
protected:
- //! Storage for compiled API list
- static const std::vector<RtAudio::Api> compiledApis;
-
void openRtApi( RtAudio::Api api );
RtApi *rtapi_;
};