21 lines
367 B
Objective-C
21 lines
367 B
Objective-C
//
|
|
// WarningViewController.h
|
|
// Lockdown
|
|
//
|
|
// Created by Patrick Wardle on 2/14/16 and is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface WarningViewController : NSViewController
|
|
{
|
|
|
|
}
|
|
|
|
/* PROPERTIES */
|
|
|
|
//'continue' button
|
|
@property(weak)IBOutlet NSButton* continueButton;
|
|
|
|
@end
|