29 lines
449 B
Objective-C
29 lines
449 B
Objective-C
//
|
|
// AboutWindowController.h
|
|
// OverSight
|
|
//
|
|
// Created by Patrick Wardle on 7/15/16.
|
|
// Copyright (c) 2016 Objective-See. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface AboutWindowController : NSWindowController <NSWindowDelegate>
|
|
{
|
|
|
|
}
|
|
|
|
/* PROPERTIES */
|
|
|
|
//version label/string
|
|
@property (weak) IBOutlet NSTextField *versionLabel;
|
|
|
|
//patrons
|
|
@property (unsafe_unretained) IBOutlet NSTextView *patrons;
|
|
|
|
|
|
/* METHODS */
|
|
|
|
|
|
@end
|