]> git.sur5r.net Git - glabels/blob - src/merge-evolution.h
Imported Upstream version 3.0.0
[glabels] / src / merge-evolution.h
1 /*
2  *  merge-evolution.h
3  *  Copyright (C) 2001-2009  Jim Evins <evins@snaught.com>.
4  *  and
5  *  Copyright (C) 2005  Austin Henry <ahenry@users.sourceforge.net>
6  *
7  *  This file is part of gLabels.
8  *
9  *  gLabels is free software: you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation, either version 3 of the License, or
12  *  (at your option) any later version.
13  *
14  *  gLabels is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with gLabels.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23 #ifndef __MERGE_EVOLUTION_H__
24 #define __MERGE_EVOLUTION_H__
25
26 #include "merge.h"
27
28 G_BEGIN_DECLS
29
30 /* The following object arguments are available:
31  *
32  * name               type             description
33  * ---------------------------------------------------------------------------
34  * query              gchar*           The query used to select records
35  *
36  */
37
38 #define GL_TYPE_MERGE_EVOLUTION              (gl_merge_evolution_get_type ())
39 #define GL_MERGE_EVOLUTION(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GL_TYPE_MERGE_EVOLUTION, glMergeEvolution))
40 #define GL_MERGE_EVOLUTION_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_MERGE_EVOLUTION, glMergeEvolutionClass))
41 #define GL_IS_MERGE_EVOLUTION(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_MERGE_EVOLUTION))
42 #define GL_IS_MERGE_EVOLUTION_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_MERGE_EVOLUTION))
43 #define GL_MERGE_EVOLUTION_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), GL_TYPE_MERGE_EVOLUTION, glMergeEvolutionClass))
44
45
46 typedef struct _glMergeEvolution          glMergeEvolution;
47 typedef struct _glMergeEvolutionClass     glMergeEvolutionClass;
48
49 typedef struct _glMergeEvolutionPrivate   glMergeEvolutionPrivate;
50
51
52 struct _glMergeEvolution {
53         glMerge                   object;
54
55         glMergeEvolutionPrivate  *priv;
56 };
57
58 struct _glMergeEvolutionClass {
59         glMergeClass              parent_class;
60 };
61
62
63 GType             gl_merge_evolution_get_type            (void) G_GNUC_CONST;
64
65 G_END_DECLS
66
67 #endif /* __MERGE_EVOLUTION_H__ */
68
69
70
71 /*
72  * Local Variables:       -- emacs
73  * mode: C                -- emacs
74  * c-basic-offset: 8      -- emacs
75  * tab-width: 8           -- emacs
76  * indent-tabs-mode: nil  -- emacs
77  * End:                   -- emacs
78  */