BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 /**************************************************************************** 00002 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00003 The BioBhasha : The Biologist's Programming Language 00004 Version 1.0 (19th December 2001) 00005 Dr. Prasad, B.V.L.S. 00006 Contact: prasadbvls@helixgenomics.com 00007 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00008 *****************************************************************************/ 00009 #ifndef BIOPUBMEDSB_H 00010 #define BIOPUBMEDSB_H 00011 00012 #include "BioPubmedSingleSb.h" 00013 #include <cstdio> 00014 #include <cstdlib> 00015 #include <vector> 00016 using namespace std; 00017 00018 class BioPubmedSb 00019 { 00020 vector<BioPubmedSingleSb> multiSb_; 00021 protected : 00022 void setSb(vector<string>&); 00023 public : 00024 BioPubmedSb(); 00025 BioPubmedSb(const string& fn_); 00026 00027 void showSb(ostream& =cout); 00028 00029 string getSb(int); 00030 int getNumberOfSbs(); 00031 bool findSb(const string& ); 00032 }; 00033 00034 #endif