25 lines
463 B
Objective-C
25 lines
463 B
Objective-C
//
|
|
// ESPTouchDelegate.h
|
|
// EspTouchDemo
|
|
//
|
|
// Created by fby on 8/14/15.
|
|
// Copyright (c) 2015 fby. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "ESPTouchResult.h"
|
|
|
|
|
|
@protocol ESPTouchDelegate <NSObject>
|
|
|
|
/**
|
|
* when new esptouch result is added, the listener will call
|
|
* onEsptouchResultAdded callback
|
|
*
|
|
* @param result
|
|
* the Esptouch result
|
|
*/
|
|
-(void) onEsptouchResultAddedWithResult: (ESPTouchResult *) result;
|
|
|
|
@end
|