You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
366 B
18 lines
366 B
%{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
|
|
{
|
|
protected:
|
|
virtual gint quit(GdkEventAny *ev);
|
|
};
|
|
#endif
|