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