476faaf0c83750bb8a1ab4c395be1bf96edb73a0
[pspp] / src / ui / gui / psppire-var-sheet-header.h
1 /*
2     A candidate replacement for Pspp's sheet
3     Copyright (C) 2016  John Darrington
4
5     This program is free software: you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation, either version 3 of the License, or
8     (at your option) any later version.
9
10     This program 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
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 #ifndef _PSPPIRE_VAR_SHEET_HEADER_H
20 #define _PSPPIRE_VAR_SHEET_HEADER_H
21
22
23 G_DECLARE_FINAL_TYPE (PsppireVarSheetHeader, psppire_var_sheet_header, PSPPIRE, VAR_SHEET_HEADER, GObject)
24
25
26 struct _PsppireVarSheetHeader
27 {
28   GObject parent_instance;
29 };
30
31 struct _PsppireVarSheetHeaderClass
32 {
33   GObjectClass parent_instance;
34 };
35
36
37
38 #define PSPPIRE_TYPE_VAR_SHEET_HEADER psppire_var_sheet_header_get_type ()
39
40 #endif