mirror of
https://github.com/ZaidElkurdi/AssistantPlus.git
synced 2025-01-22 19:40:51 +00:00
23 lines
391 B
Objective-C
23 lines
391 B
Objective-C
//
|
|
// AssistantQueryHandler.h
|
|
//
|
|
//
|
|
// Created by Zaid Elkurdi on 3/7/15.
|
|
//
|
|
//
|
|
|
|
#import "AssistantAceCommandBuilder.h"
|
|
|
|
typedef enum {
|
|
AssistantMusicPauseAction = 0,
|
|
AssistantMusicPlayAction = 1,
|
|
AssistantChatAction = 2,
|
|
AssistantDefaultAction = 3
|
|
} AssistantAction;
|
|
|
|
@interface AssistantQueryHandler : NSObject
|
|
|
|
- (AssistantAction)handleQuery:(NSString*)query;
|
|
|
|
@end
|