1/*
2        main.m
3
4	main : This file is part of Preview
5
6	Copyright (C) 2003,2004 Fabien VALLON
7	2003,2004 Alcove ( http://www.alcove.com )
8
9	Authors: Fabien VALLON <fabien@sonappart.net>
10	Date:	10 Oct 2003
11
12	This program is free software; you can redistribute it and/or
13	modify it under the terms of the GNU General Public License as
14	published by the Free Software Foundation; either version 2 of
15	the License, or (at your option) any later version.
16
17	This program is distributed in the hope that it will be useful,
18	but WITHOUT ANY WARRANTY; without even the implied warranty of
19	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20
21	See the GNU General Public License for more details.
22
23	You should have received a copy of the GNU General Public
24	License along with this program; if not, write to:
25
26		Free Software Foundation, Inc.
27		59 Temple Place - Suite 330
28		Boston, MA  02111-1307, USA
29*/
30
31
32#include <AppKit/NSApplication.h>
33
34int main(int argc, const char *argv[])
35{
36  return NSApplicationMain (argc, argv);
37}
38
39
40
41
42