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:
David Chisnall 2011-08-11 10:57:02 +00:00
parent 4e05c96c6f
commit 0760bfa96f

View file

@ -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