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.
25 lines
446 B
25 lines
446 B
#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
|