view src/gtkmm-test.cpp @ 1184:72006e4e493a

test program for package gtkmm
author Martin Gerhardy <martin.gerhardy@gmail.com>
date Thu, 23 Sep 2010 18:15:05 +1000
parents
children
line wrap: on
line source

/* This file is part of mingw-cross-env.       */
/* See doc/index.html for further information. */

#include <gtkmm/window.h>
#include <gtkmm/main.h>

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

    Gtk::Window window;
    window.set_title("Test App mingw-cross-env");
    window.set_default_size(200, 200);
    window.show_all();
    g.run(window);
    return 0;
}