ec0a9021d52d1acc088a9929889df9d837141576 angie Wed Mar 28 13:55:10 2012 -0700 Comment tweak. diff --git src/inc/annoStreamer.h src/inc/annoStreamer.h index 2dec83d..c1e158d 100644 --- src/inc/annoStreamer.h +++ src/inc/annoStreamer.h @@ -64,25 +64,25 @@ /* Return supported filters with current settings. Callers can modify and free when done. */ void annoStreamerSetFilters(struct annoStreamer *self, struct annoFilter *newFilters); /* Free old filters and use clone of newFilters. */ struct annoColumn *annoStreamerGetColumns(struct annoStreamer *self); /* Return supported columns with current settings. Callers can modify and free when done. */ void annoStreamerSetColumns(struct annoStreamer *self, struct annoColumn *columns); /* Free old columns and use clone of newColumns. */ void annoStreamerInit(struct annoStreamer *self, struct asObject *asObj); /* Initialize a newly allocated annoStreamer with default annoStreamer methods and * default filters and columns based on asObj. * In general, subclasses' constructors will call this first; override nextRow, close, - * and probably setRegion; and then initialize their private data. */ + * and probably setRegion and setQuery; and then initialize their private data. */ void annoStreamerFree(struct annoStreamer **pSelf); /* Free self. This should be called at the end of subclass close methods, after * subclass-specific connections are closed and resources are freed. */ void annoStreamerSetQuery(struct annoStreamer *self, struct annoGratorQuery *query); /* Set query (to be called only by annoGratorQuery which is created after streamers). */ #endif//ndef ANNOSTREAMER_H