Move all command implementations into a single 'commands' directory.
[pspp] / src / ui / gui / dummy.c
index 51c3e2da9f40e1ec7ba630f4e62a5de46c898928..50e0d6529a940a97f067399f653e76b38219f4a4 100644 (file)
 #include "libpspp/compiler.h"
 #include "data/variable.h"
 
+#include "psppire-data-store.h"
 #include "t-test-options.h"
-#include "src/language/stats/chart-category.h"
-#include "src/language/stats/aggregate.h"
+#include "src/language/commands/chart-category.h"
+#include "src/language/commands/aggregate.h"
 
 const GEnumValue align[1];
 const GEnumValue measure[1];
@@ -58,3 +59,19 @@ 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;
+}