-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAFSpeechDelegate.h
22 lines (18 loc) · 994 Bytes
/
AFSpeechDelegate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
* This header is generated by class-dump-z 0.2a.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import "NSObject.h"
@protocol AFSpeechDelegate <NSObject>
@optional
-(void)assistantConnectionSpeechRecordingWillBegin:(id)assistantConnectionSpeechRecording;
-(void)assistantConnectionSpeechRecordingDidBegin:(id)assistantConnectionSpeechRecording;
-(void)assistantConnectionSpeechRecordingDidEnd:(id)assistantConnectionSpeechRecording;
-(void)assistantConnectionSpeechRecordingDidCancel:(id)assistantConnectionSpeechRecording;
-(void)assistantConnection:(id)connection speechRecordingDidFail:(id)speechRecording;
-(void)assistantConnection:(id)connection speechRecognitionDidFail:(id)speechRecognition;
-(void)assistantConnection:(id)connection didRecognizePhrases:(id)phrases correctionIdentifier:(id)identifier;
-(void)assistantConnection:(id)connection didRecognizeSpeechPhrases:(id)phrases correctionIdentifier:(id)identifier;
@end