add new sigc++2 directory
[ardour.git] / libs / gtkmm2 / tests / child_widget / main.cc
1 //$Id: main.cc 2 2003-01-21 13:41:59Z murrayc $ -*- c++ -*-
2
3 /* gtkmm example Copyright (C) 2002 gtkmm development team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2
7  * as published by the Free Software Foundation.
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 #include <gtkmm/main.h>
20 #include "testwindow.h"
21
22 int main(int argc, char *argv[])
23 {
24   Gtk::Main kit(argc, argv);
25
26   TestWindow testWindow;
27   kit.run(testWindow); //Shows the window and returns when it is closed.
28
29   return 0;
30 }