Mobile API Reference  MicroStrategy 2019
LaserPointerDelegate.h
Go to the documentation of this file.
1 //
2 // LaserPointerDelegate.h
3 // MicroStrategyMobile
4 //
5 // Created by Hang Hang on 3/1/12.
6 // Copyright (c) 2012 MicroStrategy Inc. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @protocol MSILaserPointerDelegate <NSObject>
12 
13 - (void)startLaserPointerTapAndHold:(UIGestureRecognizer *)gestureRecognizer;
14 - (void)stopLaserPointerMode:(UIGestureRecognizer *)gestureRecognizer;
15 - (void)laserPointerTouchMoved:(UIGestureRecognizer *)gestureRecognizer;
16 
17 @end