summaryrefslogtreecommitdiffstats
path: root/macosx/InstantHandBrake/Device.h
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2015-10-17 10:48:46 +0200
committerDamiano Galassi <[email protected]>2015-10-17 10:48:46 +0200
commit939b94eba272c4125906441e8f07296d8236dc8a (patch)
tree369b83f23a6d1b6e6eaa077e60b53fa21306949c /macosx/InstantHandBrake/Device.h
parent71704c13a8a2d2c1c933ee787d87333e8c600851 (diff)
Remove obsolete InstantHandBrake project.
Diffstat (limited to 'macosx/InstantHandBrake/Device.h')
-rw-r--r--macosx/InstantHandBrake/Device.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/macosx/InstantHandBrake/Device.h b/macosx/InstantHandBrake/Device.h
deleted file mode 100644
index 92a7f18b9..000000000
--- a/macosx/InstantHandBrake/Device.h
+++ /dev/null
@@ -1,27 +0,0 @@
-//
-// Preset.h
-// InstantHandBrake
-//
-// Created by Damiano Galassi on 15/01/08.
-// This file is part of the HandBrake source code.
-// Homepage: <http://handbrake.fr/>.
-// It may be used under the terms of the GNU General Public License.
-//
-//
-
-#import <Cocoa/Cocoa.h>
-#import "Preset.h"
-
-
-@interface Device : NSObject <NSCoding> {
- NSString * deviceName;
- NSMutableArray * presetsArray;
-}
-
-- (id) initWithDeviceName:(NSString *) name;
-- (void) addPreset: (Preset *) preset;
-
-- (NSString *) name;
-- (Preset *) firstPreset;
-
-@end