diff options
Diffstat (limited to 'macosx/HBQueueActionItem.h')
-rw-r--r-- | macosx/HBQueueActionItem.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/macosx/HBQueueActionItem.h b/macosx/HBQueueActionItem.h new file mode 100644 index 000000000..6746e624b --- /dev/null +++ b/macosx/HBQueueActionItem.h @@ -0,0 +1,22 @@ +/* HBQueueActionItem.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> +#import "HBQueueItem.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface HBQueueActionStopItem : NSObject<HBQueueItem> + +/// Current state of the item. +@property (nonatomic) HBQueueItemState state; + +/// The title of the item. +@property (nonatomic, readonly) NSString *title; + +@end + +NS_ASSUME_NONNULL_END |