blob: c44bff321f6614baaab671b682bb386916c1bcd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef $HEADERGUARD$
#define $HEADERGUARD$
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <string.h>
#include <gdk/gdk.h>
#include <gtk/gtk.h>
$DOC$
typedef struct td_test {
/* TODO: put your data here */
} $CLASSNAME$, *$CLASSNAME$Ptr;
$CLASSNAME$* $CLASSNAME$_new(void);
void $CLASSNAME$_delete($CLASSNAME$* self);
gboolean $CLASSNAME$_init($CLASSNAME$* self);
void $CLASSNAME$_end($CLASSNAME$* self);
#endif
|