ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/gbioseq/trunk/Main.cs
Revision: 1
Committed: Wed Dec 20 17:52:42 2006 UTC (18 years, 1 month ago) by tryphon
File size: 884 byte(s)
Log Message:
Initial import.
Line File contents
1 // project created on 15/08/2004 at 16:06
2
3 /*
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
18
19 using System;
20 using Gtk;
21
22 class MainClass {
23 public static void Main(string[] args)
24 {
25 Application.Init ();
26
27 new MyWindow ();
28 Application.Run ();
29 }
30 }