Move all command implementations into a single 'commands' directory.
[pspp] / src / ui / gui / dummy.c
index fa28d207b3553273b322cd4ea5315171c5a85bfb..50e0d6529a940a97f067399f653e76b38219f4a4 100644 (file)
 
 
 #include <config.h>
+#include <assert.h>
 
 #include <gtk/gtk.h>
 
-#include "src/language/stats/chart-category.h"
+#include "libpspp/compiler.h"
+#include "data/variable.h"
+
+#include "psppire-data-store.h"
+#include "t-test-options.h"
+#include "src/language/commands/chart-category.h"
+#include "src/language/commands/aggregate.h"
 
 const GEnumValue align[1];
 const GEnumValue measure[1];
 const GEnumValue role[1];
 
-
-const int N_AG_FUNCS = 0;
-const struct ag_func ag_func[1];
-
-int F_8_0;
-
-int var_is_numeric () {}
-
-
-int tt_options_dialog_run () {}
-
-int agr_func_tab () {}
+bool
+var_is_numeric (const struct variable *v UNUSED)
+{
+  assert (0);
+  return -1;
+}
+
+void
+tt_options_dialog_run (struct tt_options_dialog *x UNUSED)
+{
+  assert (0);
+}
+
+const struct agr_func agr_func_tab[] =
+  {
+  };
+
+const struct ag_func ag_func[] = {};
+const int N_AG_FUNCS = 1;
+
+
+gchar *
+psppire_data_store_value_to_string (gpointer unused, PsppireDataStore *store, gint col, gint row, const GValue *v)
+{
+  assert (0);
+  return NULL;
+}
+
+gboolean
+psppire_data_store_string_to_value (GtkTreeModel *model, gint col, gint row,
+                                   const gchar *in, GValue *out)
+{
+  assert (0);
+  return FALSE;
+}