mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 03:55:47 +08:00
23 lines
486 B
Objective-C
23 lines
486 B
Objective-C
//
|
|
// TestDocs3AppDelegate.h
|
|
// TestDocs3
|
|
//
|
|
// Created by naceka on 24.04.12.
|
|
// Copyright 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class TestDocs3ViewController;
|
|
|
|
@interface TestDocs3AppDelegate : NSObject <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
TestDocs3ViewController *viewController;
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
@property (nonatomic, retain) IBOutlet TestDocs3ViewController *viewController;
|
|
|
|
@end
|
|
|