WinGui: Fix another instance of the Caliburn vs Json.net sillyness where objects...
[HandBrake.git] / macosx / HBDVDDetector.h
blob978f944da86d4a9d15bad4ef129dedf6454cb6a2
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 */
10 #import <Foundation/Foundation.h>
12 NS_ASSUME_NONNULL_BEGIN
14 @interface HBDVDDetector : NSObject
16 - (instancetype)init NS_UNAVAILABLE;
18 + (HBDVDDetector *)detectorForPath: (NSString *)aPath;
19 - (HBDVDDetector *)initWithPath: (NSString *)aPath NS_DESIGNATED_INITIALIZER;
21 @property (nonatomic, getter=isVideoDVD, readonly) BOOL videoDVD;
22 @property (nonatomic, readonly, copy) NSString *devicePath;
24 @end
26 NS_ASSUME_NONNULL_END