00001 #ifndef SEQRSLT.H 00002 #define SEQRSLT.H 00003 00004 #include "cadbc.h" 00005 00006 class seqrslt 00007 { 00008 public: 00009 seqrslt(const cadbc &db); 00010 char *next(); // return the next sequence 00011 00012 private: 00013 char *buf; // buffer containing the query results with 00014 // one or more sequences in fasta flat file format 00015 cadbc *db; // database object 00016 }; 00017 #endif
1.5.6