21 lines
401 B
Objective-C
21 lines
401 B
Objective-C
/* HBPictureViewController.h $
|
|
|
|
This file is part of the HandBrake source code.
|
|
Homepage: <http://handbrake.fr/>.
|
|
It may be used under the terms of the GNU General Public License. */
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class HBFilters;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface HBFiltersViewController : NSViewController
|
|
|
|
@property (nonatomic, readwrite, weak) HBFilters *filters;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|