mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-03 17:55:10 +08:00
19 lines
347 B
Objective-C
19 lines
347 B
Objective-C
//
|
|
// DiscussionBoardAppDelegate.h
|
|
// DiscussionBoard
|
|
//
|
|
// Created by Daniel Hammond on 1/7/11.
|
|
// Copyright 2011 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface DiscussionBoardAppDelegate : NSObject <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
|
|
@end
|
|
|