OSDN Git Service

import 0.9.3
[handbrake-jp/handbrake-jp.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.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 "device.h"
14
15 @interface DeviceController : NSObject {
16     NSMutableArray      *devicesArray;
17     NSString            *appSupportPath;
18 }
19
20 - (id)init;
21 - (BOOL) loadDevices;
22 - (BOOL) loadBuiltInDevices;
23 - (id)populateList;
24 - (NSArray *) devicesList;
25 - (BOOL) saveDevices;
26
27
28 @end