mirror of
https://github.com/objective-see/KnockKnock.git
synced 2026-03-22 06:52:25 +00:00
94ffaef20f
fix for #45
20 lines
383 B
Objective-C
20 lines
383 B
Objective-C
//
|
|
// DiffWindowController.h
|
|
// KnockKnock
|
|
//
|
|
// Created by Patrick Wardle on 09/01/24.
|
|
// Copyright (c) 2024 Objective-See. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface DiffWindowController : NSWindowController
|
|
|
|
//differences
|
|
@property(nonatomic, retain)NSString* differences;
|
|
|
|
//plist contents
|
|
@property (unsafe_unretained) IBOutlet NSTextView *contents;
|
|
|
|
@end
|