From c50ef935e0792eeb0256ddf5df87af015f3ae1d8 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Mon, 8 Oct 2018 15:21:06 +0200 Subject: Initial commit --- src/main.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/main.cpp (limited to 'src') diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..e085836 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,13 @@ +#include + +int main(int argc, char *argv[]) +{ + auto app = + Gtk::Application::create(argc, argv, + "org.gtkmm.examples.base"); + + Gtk::Window window; + window.set_default_size(200, 200); + + return app->run(window); +} -- cgit v1.2.3