blob: 23f41876af3a6699f52f808ec120068fb5915128 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// HBPasteboardWriter.h
// HandBrake
//
// Created by Damiano Galassi on 04/10/20.
// Copyright © 2020 HandBrake. All rights reserved.
//
#import <Cocoa/Cocoa.h>
NS_ASSUME_NONNULL_BEGIN
extern NSPasteboardType const tableViewIndex;
@interface HBPasteboardItem : NSObject<NSPasteboardWriting>
- (instancetype)initWithIndex:(NSInteger)index;
@property (nonatomic, readonly) NSInteger index;
@end
NS_ASSUME_NONNULL_END
|