527428fffb4613aff49b19580e90b8e66ee99204 angie Mon Apr 15 12:36:13 2013 -0700 Ripping out unused annoColumn -- it's really an output option for tab-sep or CT output and could simply be an slName list. refs #6152 diff --git src/inc/annoColumn.h src/inc/annoColumn.h deleted file mode 100644 index 79b11c2..0000000 --- src/inc/annoColumn.h +++ /dev/null @@ -1,26 +0,0 @@ -/* annoColumn -- def. of column plus flag for inclusion in output of annoGratorQuery framework */ -#ifndef ANNOCOLUMN_H -#define ANNOCOLUMN_H - -#include "common.h" -#include "asParse.h" - -struct annoColumn -/* A column as defined by autoSql, and whether it is currently set to be included in output. */ - { - struct annoColumn *next; - struct asColumn *def; - boolean included; - }; - -struct annoColumn *annoColumnsFromAsObject(struct asObject *asObj); -/* Create a list of columns from asObj; by default, all are set to be included in output. - * Callers: do not modify any column's def! */ - -struct annoColumn *annoColumnCloneList(struct annoColumn *list); -/* Shallow-copy a list of annoColumns. Callers: do not modify any column's def! */ - -void annoColumnFreeList(struct annoColumn **pList); -/* Shallow-free a list of annoColumns. */ - -#endif//ndef ANNOCOLUMN_H