summaryrefslogtreecommitdiffstats
path: root/macosx/DriveDetector.h
diff options
context:
space:
mode:
authortiter <[email protected]>2006-03-18 21:57:13 +0000
committertiter <[email protected]>2006-03-18 21:57:13 +0000
commite3cd96683d5137f1aefef861ae40f7d0de93a7cb (patch)
tree4a1419cdab7b188853655f56d45a44e81d73cdba /macosx/DriveDetector.h
parent111307fa9186021aef60d28e6b707c93190d5407 (diff)
Moves drive detection to a seperate class
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@43 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/DriveDetector.h')
-rw-r--r--macosx/DriveDetector.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/macosx/DriveDetector.h b/macosx/DriveDetector.h
new file mode 100644
index 000000000..09d589adb
--- /dev/null
+++ b/macosx/DriveDetector.h
@@ -0,0 +1,21 @@
+/* DriveDetector.h $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
+#import <Cocoa/Cocoa.h>
+
+@interface DriveDetector : NSObject
+{
+ id fTarget;
+ SEL fSelector;
+
+ int fCount;
+ NSMutableArray * fDrives;
+ NSTimer * fTimer;
+}
+
+- (id) initWithCallback: (id) target selector: (SEL) selector;
+
+@end