mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 02:10:48 +00:00
Move the +defaultSpeechServer method into a category interface, to silence a clang warning.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@33718 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4e05c96c6f
commit
0760bfa96f
1 changed files with 6 additions and 4 deletions
|
@ -7,10 +7,6 @@
|
|||
* in future if pluggable speech engines are considered beneficial.
|
||||
*/
|
||||
@interface GSSpeechEngine : NSObject
|
||||
/**
|
||||
* Returns a new instance of the default speech engine.
|
||||
*/
|
||||
+ (GSSpeechEngine*)defaultSpeechEngine;
|
||||
/**
|
||||
* Begin speaking the specified string.
|
||||
*/
|
||||
|
@ -48,3 +44,9 @@
|
|||
*/
|
||||
- (void)didFinishSpeaking: (BOOL)didFinish;
|
||||
@end
|
||||
@interface GSSpeechEngine (Default)
|
||||
/**
|
||||
* Returns a new instance of the default speech engine.
|
||||
*/
|
||||
+ (GSSpeechEngine*)defaultSpeechEngine;
|
||||
@end
|
||||
|
|
Loading…
Reference in a new issue