2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2007-2022 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 <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface PeerProgressIndicatorCell : NSLevelIndicatorCell
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSDictionary* fAttributes;
|
2008-12-03 00:18:18 +00:00
|
|
|
BOOL fSeed;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
2007-09-28 12:55:28 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setSeed:(BOOL)seed;
|
2008-12-03 00:18:18 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@end
|