@@ -967,13 +967,13 @@ class RtApiAsio: public RtApi
967
967
968
968
RtApiAsio ();
969
969
~RtApiAsio ();
970
- RtAudio::Api getCurrentApi ( void ) { return RtAudio::WINDOWS_ASIO; }
971
- unsigned int getDeviceCount ( void );
972
- RtAudio::DeviceInfo getDeviceInfo ( unsigned int device );
973
- void closeStream ( void );
974
- void startStream ( void );
975
- void stopStream ( void );
976
- void abortStream ( void );
970
+ RtAudio::Api getCurrentApi ( void ) override { return RtAudio::WINDOWS_ASIO; }
971
+ unsigned int getDeviceCount ( void ) override ;
972
+ RtAudio::DeviceInfo getDeviceInfo ( unsigned int device ) override ;
973
+ void closeStream ( void ) override ;
974
+ void startStream ( void ) override ;
975
+ void stopStream ( void ) override ;
976
+ void abortStream ( void ) override ;
977
977
978
978
// This function is intended for internal use only. It must be
979
979
// public because it is called by the internal callback handler,
@@ -989,7 +989,7 @@ class RtApiAsio: public RtApi
989
989
bool probeDeviceOpen ( unsigned int device, StreamMode mode, unsigned int channels,
990
990
unsigned int firstChannel, unsigned int sampleRate,
991
991
RtAudioFormat format, unsigned int *bufferSize,
992
- RtAudio::StreamOptions *options );
992
+ RtAudio::StreamOptions *options ) override ;
993
993
};
994
994
995
995
#endif
@@ -1002,15 +1002,15 @@ class RtApiDs: public RtApi
1002
1002
1003
1003
RtApiDs ();
1004
1004
~RtApiDs ();
1005
- RtAudio::Api getCurrentApi ( void ) { return RtAudio::WINDOWS_DS; }
1006
- unsigned int getDeviceCount ( void );
1007
- unsigned int getDefaultOutputDevice ( void );
1008
- unsigned int getDefaultInputDevice ( void );
1009
- RtAudio::DeviceInfo getDeviceInfo ( unsigned int device );
1010
- void closeStream ( void );
1011
- void startStream ( void );
1012
- void stopStream ( void );
1013
- void abortStream ( void );
1005
+ RtAudio::Api getCurrentApi ( void ) override { return RtAudio::WINDOWS_DS; }
1006
+ unsigned int getDeviceCount ( void ) override ;
1007
+ unsigned int getDefaultOutputDevice ( void ) override ;
1008
+ unsigned int getDefaultInputDevice ( void ) override ;
1009
+ RtAudio::DeviceInfo getDeviceInfo ( unsigned int device ) override ;
1010
+ void closeStream ( void ) override ;
1011
+ void startStream ( void ) override ;
1012
+ void stopStream ( void ) override ;
1013
+ void abortStream ( void ) override ;
1014
1014
1015
1015
// This function is intended for internal use only. It must be
1016
1016
// public because it is called by the internal callback handler,
@@ -1027,7 +1027,7 @@ class RtApiDs: public RtApi
1027
1027
bool probeDeviceOpen ( unsigned int device, StreamMode mode, unsigned int channels,
1028
1028
unsigned int firstChannel, unsigned int sampleRate,
1029
1029
RtAudioFormat format, unsigned int *bufferSize,
1030
- RtAudio::StreamOptions *options );
1030
+ RtAudio::StreamOptions *options ) override ;
1031
1031
};
1032
1032
1033
1033
#endif
0 commit comments