1
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8#import <Cocoa/Cocoa.h>
9#import "SkNSWindow.h"
10@interface FileReaderAppDelegate : NSObject <NSApplicationDelegate> {
11    SkNSWindow *window;
12}
13
14@property (assign) IBOutlet SkNSWindow *window;
15@end
16