AFNetworking/Mac Example/AppDelegate.h
Mattt Thompson 5677b6de94 Adding AFNetworking workspace, containing both the iOS and Mac example applications
Restructuring project files, directories, etc.
2011-09-23 12:54:14 -05:00

17 lines
339 B
Objective-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 AppDelegate : NSObject <NSApplicationDelegate> {
NSWindow *_window;
}
@property (strong) IBOutlet NSWindow *window;
@end