1#ifndef __EXAMPLEAPP_H
2#define __EXAMPLEAPP_H
3
4#include <gtk/gtk.h>
5
6
7#define EXAMPLE_APP_TYPE (example_app_get_type ())
8G_DECLARE_FINAL_TYPE (ExampleApp, example_app, EXAMPLE, APP, GtkApplication)
9
10
11ExampleApp *example_app_new (void);
12
13
14#endif /* __EXAMPLEAPP_H */
15

source code of gtk/examples/application3/exampleapp.h