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 BIOPUBMEDRN_H 00010 #define BIOPUBMEDRN_H 00011 00012 #include "BioPubmedSingleRn.h" 00013 #include <vector> 00014 #include <cstdio> 00015 #include <cstdlib> 00016 00017 00018 using namespace std; 00019 00020 class BioPubmedRn 00021 { 00022 vector<BioPubmedSingleRn> multiRn_; 00023 protected : 00024 void setRn(vector<string>&); 00025 public : 00026 BioPubmedRn(); 00027 BioPubmedRn(const string& fn_); 00028 00029 void showRn(ostream& =cout); 00030 00031 string getRn(int); 00032 int getNumberOfRns(); 00033 bool findRn(const string& ); 00034 }; 00035 00036 #endif