docs: Typo fix GInitiable → GInitable
[glib.git] / tests / gobject / testmodule.h
blob751d8ad52ad9d2d12ac9a2ba1875bd454fa72d53
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * testmodule.h: Dummy dynamic type module
3 * Copyright (C) 2003 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #ifndef __TEST_MODULE_H__
22 #define __TEST_MODULE_H__
24 #include <glib-object.h>
26 G_BEGIN_DECLS
28 typedef struct _TestModule TestModule;
29 typedef struct _TestModuleClass TestModuleClass;
31 #define TEST_TYPE_MODULE (test_module_get_type ())
32 #define TEST_MODULE(module) (G_TYPE_CHECK_INSTANCE_CAST ((module), TEST_TYPE_MODULE, TestModule))
33 #define TEST_MODULE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), TEST_TYPE_MODULE, TestModuleClass))
34 #define TEST_IS_MODULE(module) (G_TYPE_CHECK_INSTANCE_TYPE ((module), TEST_TYPE_MODULE))
35 #define TEST_IS_MODULE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), TEST_TYPE_MODULE))
36 #define TEST_MODULE_GET_CLASS(module) (G_TYPE_INSTANCE_GET_CLASS ((module), TEST_TYPE_MODULE, TestModuleClass))
38 typedef void (*TestModuleRegisterFunc) (GTypeModule *module);
40 struct _TestModule
42 GTypeModule parent_instance;
44 TestModuleRegisterFunc register_func;
47 struct _TestModuleClass
49 GTypeModuleClass parent_class;
52 GType test_module_get_type (void);
53 GTypeModule *test_module_new (TestModuleRegisterFunc register_func);
55 G_END_DECLS
57 #endif /* __TEST_MODULE_H__ */