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 BIOPUBMEDDEP_H 00010 #define BIOPUBMEDDEP_H 00011 00012 #include <string> 00013 #include <fstream> 00014 #include <iostream> 00015 #include <cstdio> 00016 #include <cstdlib> 00017 00018 00019 using namespace std; 00020 00021 class BioPubmedDep 00022 { 00023 string dep_; 00024 protected : 00025 void setDep(string); 00026 public : 00027 BioPubmedDep(); 00028 BioPubmedDep(const string& fn_); 00029 00030 void showDep(ostream& =cout); 00031 string getDep(); 00032 bool findDep(const string& ); 00033 }; 00034 #endif