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 BIOPUBMEDGR_H 00010 #define BIOPUBMEDGR_H 00011 00012 #include "BioPubmedSingleGr.h" 00013 #include <vector> 00014 #include <cstdio> 00015 #include <cstdlib> 00016 00017 using namespace std; 00018 00019 class BioPubmedGr 00020 { 00021 vector<BioPubmedSingleGr> multiGr_; 00022 public : 00023 void setGr(vector<string>&); 00024 BioPubmedGr(); 00025 BioPubmedGr(const string& fn_); 00026 00027 void showGr(ostream& =cout); 00028 00029 string getGr(int); 00030 int getNumberOfGrs(); 00031 bool findGr(const string& ); 00032 }; 00033 00034 #endif