96586d6b02ac0aee7e20235900fd7a16cc89e378
[pspp] / src / ui / gui / dummy.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2020  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
19 /* This file exists merely to keep the dynamic linker happy when
20    trying to resolve symbols in the libpsppire-glade.so library
21    (used to define psppire's custom widgets in glade).  This
22    file should not be linked into any binary or library used by
23    pspp or psppire themsleves.  */
24
25
26 #include <config.h>
27 #include <assert.h>
28
29 #include <gtk/gtk.h>
30
31 #include "libpspp/compiler.h"
32 #include "data/variable.h"
33
34 #include "psppire-data-store.h"
35 #include "t-test-options.h"
36 #include "src/language/stats/chart-category.h"
37 #include "src/language/stats/aggregate.h"
38
39 const GEnumValue align[1];
40 const GEnumValue measure[1];
41 const GEnumValue role[1];
42
43 bool
44 var_is_numeric (const struct variable *v UNUSED)
45 {
46   assert (0);
47   return -1;
48 }
49
50 void
51 tt_options_dialog_run (struct tt_options_dialog *x UNUSED)
52 {
53   assert (0);
54 }
55
56 const struct agr_func agr_func_tab[] =
57   {
58   };
59
60 const struct ag_func ag_func[] = {};
61 const int N_AG_FUNCS = 1;
62
63
64 gchar *
65 psppire_data_store_value_to_string (gpointer unused, PsppireDataStore *store, gint col, gint row, const GValue *v)
66 {
67   assert (0);
68   return NULL;
69 }
70
71 gboolean
72 psppire_data_store_string_to_value (GtkTreeModel *model, gint col, gint row,
73                                     const gchar *in, GValue *out)
74 {
75   assert (0);
76   return FALSE;
77 }