Alphabetizes AUTHORS by surname, credits huevos_rancheros' contributions.
[HandBrake.git] / macosx / HBDVDDetector.h
blob935dd065ccdb818aabdf7224442da215c059997f
1 /**
2 * HBDVDDetector.h
3 * 8/17/2007
4 *
5 * This file is part of the HandBrake source code.
6 * Homepage: <http://handbrake.m0k.org/>.
7 * It may be used under the terms of the GNU General Public License.
8 */
10 #import <Cocoa/Cocoa.h>
13 @interface HBDVDDetector : NSObject
15 NSString *path;
16 NSString *bsdName;
19 + (HBDVDDetector *)detectorForPath: (NSString *)aPath;
20 - (HBDVDDetector *)initWithPath: (NSString *)aPath;
22 - (BOOL)isVideoDVD;
23 - (NSString *)devicePath;
25 @end