OSDN Git Service

add win/C# diff files
[handbrake-jp/handbrake-jp.git] / macosx / HBDVDDetector.h
1  /**
2  * HBDVDDetector.h
3  * 8/17/2007
4  * 
5  * This file is part of the HandBrake source code.
6  * Homepage: <http://handbrake.fr/>.
7  * It may be used under the terms of the GNU General Public License.
8  */
9
10 #import <Cocoa/Cocoa.h>
11
12
13 @interface HBDVDDetector : NSObject
14 {
15     NSString *path;
16     NSString *bsdName;
17 }
18
19 + (HBDVDDetector *)detectorForPath: (NSString *)aPath;
20 - (HBDVDDetector *)initWithPath: (NSString *)aPath;
21
22 - (BOOL)isVideoDVD;
23 - (NSString *)devicePath;
24
25 @end