summaryrefslogtreecommitdiffstats
path: root/macosx/InstantHandBrake/Device.h
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/InstantHandBrake/Device.h')
-rw-r--r--macosx/InstantHandBrake/Device.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/macosx/InstantHandBrake/Device.h b/macosx/InstantHandBrake/Device.h
new file mode 100644
index 000000000..e84fb5e04
--- /dev/null
+++ b/macosx/InstantHandBrake/Device.h
@@ -0,0 +1,27 @@
+//
+// Preset.h
+// InstantHandBrake
+//
+// Created by Damiano Galassi on 15/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 "Preset.h"
+
+
+@interface Device : NSObject {
+ NSString * deviceName;
+ NSMutableArray * presetsArray;
+}
+
+- (id) initWithDeviceName:(NSString *) name;
+- (void) addPreset: (Preset *) preset;
+
+- (NSString *) name;
+- (Preset *) firstPreset;
+
+@end