1 /*
2  * ggit-object-factory-base.h
3  * This file is part of libgit2-glib
4  *
5  * Copyright (C) 2012 - Jesse van den Kieboom
6  *
7  * libgit2-glib is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * libgit2-glib is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with libgit2-glib. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef __GGIT_OBJECT_FACTORY_BASE_H__
22 #define __GGIT_OBJECT_FACTORY_BASE_H__
23 
24 #include <glib-object.h>
25 
26 #include "ggit-types.h"
27 
28 G_BEGIN_DECLS
29 
30 #define GGIT_TYPE_OBJECT_FACTORY_BASE (ggit_object_factory_base_get_type ())
31 G_DECLARE_DERIVABLE_TYPE (GgitObjectFactoryBase, ggit_object_factory_base, GGIT, OBJECT_FACTORY_BASE, GObject)
32 
33 /**
34  * GgitObjectFactoryBaseClass:
35  * @parent_class: The parent class.
36  *
37  * The class structure for #GgitObjectFactoryBaseClass.
38  */
39 struct _GgitObjectFactoryBaseClass
40 {
41 	/*< private >*/
42 	GObjectClass parent_class;
43 };
44 
45 G_END_DECLS
46 
47 #endif /* __GGIT_OBJECT_FACTORY_BASE_H__ */
48 
49 /* ex:set ts=8 noet: */
50