18 lines
363 B
C
18 lines
363 B
C
|
|
//
|
||
|
|
// AFNetworking_Mac_ExampleAppDelegate.h
|
||
|
|
// AFNetworking Mac Example
|
||
|
|
//
|
||
|
|
// Created by Mattt Thompson on 11/09/23.
|
||
|
|
// Copyright 2011年 Gowalla. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Cocoa/Cocoa.h>
|
||
|
|
|
||
|
|
@interface AFNetworking_Mac_ExampleAppDelegate : NSObject <NSApplicationDelegate> {
|
||
|
|
NSWindow *_window;
|
||
|
|
}
|
||
|
|
|
||
|
|
@property (strong) IBOutlet NSWindow *window;
|
||
|
|
|
||
|
|
@end
|