1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef GEGO_WEB_APPLICATION_HEADER
#define GEGO_WEB_APPLICATION_HEADER
#include <glib.h>
#include <gio/gio.h>
#include <libsoup/soup.h>
G_BEGIN_DECLS
#define GEGO_TYPE_WEB_APPLICATION (gego_web_application_get_type ())
G_DECLARE_FINAL_TYPE (GegoWebApplication, gego_web_application, GEGO, WEB_APPLICATION, GApplication)
typedef struct _GegoWebApplication GegoWebApplication;
typedef struct _GegoWebApplicationPrivate GegoWebApplicationPrivate;
struct _GegoWebApplication {
GApplication parent_instance;
};
GType
gego_web_application_get_type (void);
G_END_DECLS
#endif /* GEGO_WEB_APPLICATION_HEADER */
|