Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > eba5c91c06a56400426fbbadecefab55 > files > 484

gtkmm24-devel-2.22.0-1.fc14.i686.rpm

/* $Id$ */

/* main.cc
 *
 * Copyright (C) 2001-2002 The gtkmm Development Team
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include "demowindow.h"
#include "gtkmm/main.h"

int main (int argc, char *argv[])
{
  Gtk::Main kit(argc, argv);

  DemoWindow window;

  kit.run(window);
  return 0;
}