// // Preset.h // InstantHandBrake // // Created by Damiano Galassi on 15/01/08. // This file is part of the HandBrake source code. // Homepage: . // It may be used under the terms of the GNU General Public License. // // #import #import "Preset.h" @interface Device : NSObject { NSString * deviceName; NSMutableArray * presetsArray; } - (id) initWithDeviceName:(NSString *) name; - (void) addPreset: (Preset *) preset; - (NSString *) name; - (Preset *) firstPreset; @end