Whitespace changes only
[pspp] / src / ui / gui / psppire-dialog-action-recode-same.h
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2012, 2016  Free Software Foundation
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17
18 #include <glib-object.h>
19 #include <glib.h>
20
21 #include "psppire-dialog-action-recode.h"
22
23 #ifndef __PSPPIRE_DIALOG_ACTION_RECODE_SAME_H__
24 #define __PSPPIRE_DIALOG_ACTION_RECODE_SAME_H__
25
26 G_BEGIN_DECLS
27
28 #define PSPPIRE_TYPE_DIALOG_ACTION_RECODE_SAME (psppire_dialog_action_recode_same_get_type ())
29
30 #define PSPPIRE_DIALOG_ACTION_RECODE_SAME(obj)  \
31                      (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
32                                                   PSPPIRE_TYPE_DIALOG_ACTION_RECODE_SAME, PsppireDialogActionRecodeSame))
33
34 #define PSPPIRE_DIALOG_ACTION_RECODE_SAME_CLASS(klass) \
35                      (G_TYPE_CHECK_CLASS_CAST ((klass), \
36                                  PSPPIRE_TYPE_DIALOG_ACTION_RECODE_SAME, \
37                                  PsppireDialogActionRecodeSameClass))
38
39
40 #define PSPPIRE_IS_DIALOG_ACTION_RECODE_SAME(obj) \
41                      (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PSPPIRE_TYPE_DIALOG_ACTION_RECODE_SAME))
42
43 #define PSPPIRE_IS_DIALOG_ACTION_RECODE_SAME_CLASS(klass) \
44                      (G_TYPE_CHECK_CLASS_TYPE ((klass), PSPPIRE_TYPE_DIALOG_ACTION_RECODE_SAME))
45
46
47 #define PSPPIRE_DIALOG_ACTION_RECODE_SAME_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), \
48                                    PSPPIRE_TYPE_DIALOG_ACTION_RECODE_SAME, \
49                                    PsppireDialogActionRecodeSameClass))
50
51 typedef struct _PsppireDialogActionRecodeSame       PsppireDialogActionRecodeSame;
52 typedef struct _PsppireDialogActionRecodeSameClass  PsppireDialogActionRecodeSameClass;
53
54
55 struct _PsppireDialogActionRecodeSame
56 {
57   PsppireDialogActionRecode parent;
58 };
59
60
61 struct _PsppireDialogActionRecodeSameClass
62 {
63   PsppireDialogActionRecodeClass parent_class;
64 };
65
66
67 GType psppire_dialog_action_recode_same_get_type (void) ;
68
69 G_END_DECLS
70
71 #endif /* __PSPPIRE_DIALOG_ACTION_RECODE_SAME_H__ */