blob: 6e8bf595c4b4f14b7a6ae85e837f66ef4fdbff73 (
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 © 2021 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
|