]> git.saurik.com Git - iphone-api.git/blob - SpringBoard-2.1/SBResetManager.h
This one only took me maybe a half hour to find.
[iphone-api.git] / SpringBoard-2.1 / SBResetManager.h
1 /*
2 * Generated by class-dump 3.1.2.
3 *
4 * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard.
5 */
6
7 #import "NSObject.h"
8
9 @class NSLock;
10
11 @interface SBResetManager : NSObject
12 {
13 BOOL _threadRunning;
14 NSLock *_lock;
15 int _mode;
16 NSLock *_progressLock;
17 float _progress;
18 }
19
20 + (id)sharedInstance;
21 - (id)init;
22 - (void)dealloc;
23 - (void)setMode:(int)fp8;
24 - (void)setProgress:(float)fp8;
25 - (float)progress;
26 - (void)beginReset;
27 - (void)_beginReset:(id)fp8;
28 - (void)_resetThread;
29 - (void)_postResetEnded;
30 - (void)_resetFinished;
31
32 @end
33