summaryrefslogtreecommitdiffstats
path: root/macosx/InstantHandBrake/DeviceController.h
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/InstantHandBrake/DeviceController.h')
-rw-r--r--macosx/InstantHandBrake/DeviceController.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/macosx/InstantHandBrake/DeviceController.h b/macosx/InstantHandBrake/DeviceController.h
new file mode 100644
index 000000000..5adf39dc1
--- /dev/null
+++ b/macosx/InstantHandBrake/DeviceController.h
@@ -0,0 +1,23 @@
+//
+// DeviceController.h
+// InstantHandBrake
+//
+// Created by Damiano Galassi on 23/01/08.
+// 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>
+#import "device.h"
+
+@interface DeviceController : NSObject {
+ NSMutableArray * deviceArray;
+}
+
+- (id)init;
+- (id)populateList;
+- (NSArray *) deviceList;
+
+@end