summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/gtk2mmapp/main_window.h
blob: 85daad4ba5af1455ee16f76f36f40478833d5aae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%{HH_TEMPLATE}

// you might replace
//    class foo : public foo_glade { ... };
// by
//    typedef foo_glade foo;
// if you didn't make any modifications to the widget

#ifndef _MAIN_WINDOW_H
#  include "main_window_glade.h"
#  define _MAIN_WINDOW_H
class main_window : public main_window_glade
{

        bool quit(GdkEventAny *ev);
};
#endif