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