/+junk/GObject_tutorial

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/GObject_tutorial
1 by Gustav Hartvigsson
First lesson.
1
#pragma once
2
3
#include "animal.h"
4
5
G_BEGIN_DECLS
6
7
8
#define TEST_TYPE_CAT test_cat_get_type ()
9
G_DECLARE_FINAL_TYPE (TestCat, test_cat, TEST, CAT, TestAnimal)
10
11
TestCat *
12
test_cat_new ();
13
14
G_END_DECLS