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
10ExampleApp *example_app_new (void);
11
12
13#endif /* __EXAMPLEAPP_H */
14

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