1f311ce51ddbd0ad3c2a49f3a9abad95b7b2d8f5
kent
  Fri Feb 20 12:36:08 2015 -0800
A new module for tables on the web mostly.

diff --git src/hg/inc/tablesTables.h src/hg/inc/tablesTables.h
new file mode 100644
index 0000000..9c8e6c6
--- /dev/null
+++ src/hg/inc/tablesTables.h
@@ -0,0 +1,12 @@
+/* tablesTables - this module deals with two types of tables SQL tables in a database,
+ * and fieldedTable objects in memory. It has routines to do sortable, filterable web
+ * displays on tables. */
+
+#ifndef TABLESTABLES_H
+#define TABLESTABLES_H
+
+struct fieldedTable *fieldedTableFromDbQuery(struct sqlConnection *conn, char *query);
+/* Return fieldedTable from a database query */
+
+#endif /* TABLESTABLES_H */
+