OSDN Git Service

IHB: New experimental device based preset system. Still incomplete.
[handbrake-jp/handbrake-jp-git.git] / macosx / InstantHandBrake / DeviceController.h
1 //
2 //  DeviceController.h
3 //  InstantHandBrake
4 //
5 //  Created by Damiano Galassi on 23/01/08.
6 //  This file is part of the HandBrake source code.
7 //  Homepage: <http://handbrake.m0k.org/>.
8 //  It may be used under the terms of the GNU General Public License.
9 //
10 //
11
12 #import <Cocoa/Cocoa.h>
13 #import "device.h"
14
15 @interface DeviceController : NSObject {
16     NSMutableArray        * deviceArray;
17 }
18
19 - (id)init;
20 - (id)populateList;
21 - (NSArray *) deviceList;
22
23 @end