-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.m
More file actions
39 lines (34 loc) · 1.21 KB
/
main.m
File metadata and controls
39 lines (34 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
Genius
Copyright (C) 2003-2006 John R Chang
Copyright (C) 2007-2008 Chris Miner
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
http://www.gnu.org/licenses/gpl.txt
*/
// Genius
// Created by John R Chang on Sat Oct 18 2003.
/*! @mainpage The Genius Project
*
* @section intro_sec Introductions
*
* Originally created by John R Chang on Sat Oct 18 2003. Opensourced on Aug 27 2006.
* Current development by Chris Miner under the GNU GPL.
*
* @section more_info For more information
*
* Visit the <a href="http://www.sourceforge.net/projects/genius">genius project</a> at sourceforge or send Chris Miner an email at
* sourceforge. (chris_miner at users.sourceforge.net)
*
*/
#import <Cocoa/Cocoa.h>
int main(int argc, const char *argv[])
{
return NSApplicationMain(argc, argv);
}