-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSBAccelerometerClient.h
More file actions
31 lines (27 loc) · 878 Bytes
/
SBAccelerometerClient.h
File metadata and controls
31 lines (27 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* This header is generated by class-dump-z 0.2-0.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import "Springboard-Structs.h"
#import <XXUnknownSuperclass.h> // Unknown library
@interface SBAccelerometerClient : XXUnknownSuperclass {
CFMachPortRef _cfMachPort;
unsigned _port;
double _updateInterval;
double _lastUpdateTime;
float _xThreshold;
float _yThreshold;
float _zThreshold;
}
@property(assign, nonatomic) unsigned port;
@property(assign, nonatomic) CFMachPortRef CFMachPort;
@property(assign, nonatomic) double updateInterval;
@property(assign, nonatomic) double lastUpdateTime;
@property(assign, nonatomic) float xThreshold;
@property(assign, nonatomic) float yThreshold;
@property(assign, nonatomic) float zThreshold;
-(BOOL)passesThresholdForX:(float)x y:(float)y z:(float)z;
-(void)dealloc;
@end