OSDN Git Service

import 0.9.3
[handbrake-jp/handbrake-jp.git] / macosx / InstantHandBrake / Device.h
1 //
2 //  Preset.h
3 //  InstantHandBrake
4 //
5 //  Created by Damiano Galassi on 15/01/08.
6 //  This file is part of the HandBrake source code.
7 //  Homepage: <http://handbrake.fr/>.
8 //  It may be used under the terms of the GNU General Public License.
9 //
10 //
11
12 #import <Cocoa/Cocoa.h>
13 #import "Preset.h"
14
15
16 @interface Device : NSObject <NSCoding> {
17     NSString            * deviceName;
18     NSMutableArray      * presetsArray;
19 }
20
21 - (id) initWithDeviceName:(NSString *) name;
22 - (void) addPreset: (Preset *) preset;
23
24 - (NSString *) name;
25 - (Preset *) firstPreset;
26
27 @end