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 "t-test-options.h" 35 #include "src/language/stats/chart-category.h" 36 #include "src/language/stats/aggregate.h" 37 38 const GEnumValue align[1]; 39 const GEnumValue measure[1]; 40 const GEnumValue role[1]; 41 42 bool var_is_numeric(const struct variable * v UNUSED)43var_is_numeric (const struct variable *v UNUSED) 44 { 45 assert (0); 46 return -1; 47 } 48 49 void tt_options_dialog_run(struct tt_options_dialog * x UNUSED)50tt_options_dialog_run (struct tt_options_dialog *x UNUSED) 51 { 52 assert (0); 53 } 54 55 const struct agr_func agr_func_tab[] = 56 { 57 }; 58 59 const struct ag_func ag_func[] = {}; 60 const int N_AG_FUNCS = 1; 61