blob: e18a31c6bb2ea0be14b1bc06e95b85ef7021b52b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#import "SkNSWindow.h"
#import "ReaderView.h"
@interface FileReaderWindow : SkNSWindow {
IBOutlet SkNSView* fView;
ReaderView* fReaderView;
}
@end
|