OSDN Git Service

2018309b146d91161f07842b4f5feead02ac5143
[handbrake-jp/handbrake-jp-git.git] / macosx / DriveDetector.h
1 /* DriveDetector.h $
2
3    This file is part of the HandBrake source code.
4    Homepage: <http://handbrake.m0k.org/>.
5    It may be used under the terms of the GNU General Public License. */
6
7 #import <Cocoa/Cocoa.h>
8
9 @interface DriveDetector : NSObject
10 {
11     id                  fTarget;
12     SEL                 fSelector;
13     
14     int                 fCount;
15     NSMutableDictionary * fDrives;
16     NSTimer             * fTimer;
17 }
18
19 - (id)   initWithCallback: (id) target selector: (SEL) selector;
20 - (void) run;
21 - (void) stop;
22
23 @end