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 Prasad, B.V.L.S. 00006 Contact: burrashiva@yahoo.com 00007 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00008 *****************************************************************************/ 00009 #ifndef BIOPUBMEDPMID_H 00010 #define BIOPUBMEDPMID_H 00011 00012 00013 #include <string> 00014 #include <fstream> 00015 #include <iostream> 00016 #include <cstdio> 00017 #include <cstdlib> 00018 00019 using namespace std; 00020 00021 class BioPubmedPmid 00022 { 00023 string pmid_; 00024 protected : 00025 void setPmid(string); 00026 public : 00027 BioPubmedPmid(); 00028 BioPubmedPmid(const string& fn_); 00029 00030 void showPmid(ostream& = cout); 00031 string getPmid(); 00032 bool findPmid(const string & ); 00033 }; 00034 00035 #endif 00036