transmission/macosx/PiecesView.h

17 lines
339 B
C
Raw Permalink Normal View History

// This file Copyright © Transmission authors and contributors.
// It may be used under the MIT (SPDX: MIT) license.
// License text can be found in the licenses/ folder.
2007-09-16 01:02:06 +00:00
#import <AppKit/AppKit.h>
2008-11-01 15:22:32 +00:00
@class Torrent;
2007-09-16 01:02:06 +00:00
@interface PiecesView : NSImageView
@property(nonatomic) Torrent* torrent;
2008-06-09 21:20:01 +00:00
- (void)clearView;
- (void)updateView;
2007-09-16 01:02:06 +00:00
@end