Move all command implementations into a single 'commands' directory.
[pspp] / src / ui / gui / dummy.c
index f103b7d4e44491fada59887f75f43eea7d0f042d..50e0d6529a940a97f067399f653e76b38219f4a4 100644 (file)
 
 #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 (void);
-int tt_options_dialog_run (void);
-int agr_func_tab (void);
-
-int
-var_is_numeric ()
+bool
+var_is_numeric (const struct variable *v UNUSED)
 {
   assert (0);
   return -1;
 }
 
-int
-tt_options_dialog_run ()
+void
+tt_options_dialog_run (struct tt_options_dialog *x UNUSED)
 {
   assert (0);
-  return -1;
 }
 
-int
-agr_func_tab ()
+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 -1;
+  return NULL;
+}
+
+gboolean
+psppire_data_store_string_to_value (GtkTreeModel *model, gint col, gint row,
+                                   const gchar *in, GValue *out)
+{
+  assert (0);
+  return FALSE;
 }