1 /*
2 
3   ZipperDocument.h
4   Zipper
5 
6   Copyright (C) 2012 Free Software Foundation, Inc
7 
8   Authors: Dirk Olmes <dirk@xanthippe.ping.de>
9            Riccardo Mottola «rm@gnu.org>
10 
11   This application is free software; you can redistribute it and/or modify it
12   under the terms of the GNU General Public License as published by the Free
13   Software Foundation; either version 2 of the License, or (at your option)
14   any later version.
15 
16   This program is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
18   or FITNESS FOR A PARTICULAR PURPOSE.
19   See the GNU General Public License for more details
20 
21  */
22 
23 #import <AppKit/NSDocument.h>
24 
25 @class Archive, TableViewDataSource;
26 
27 @interface ZipperDocument : NSDocument
28 {
29   IBOutlet NSTableView *_tableView;
30 
31   Archive *_archive;
32   IBOutlet TableViewDataSource *_tableViewDataSource;
33 }
34 
35 - (TableViewDataSource *)tableViewDataSource;
36 
37 @end
38