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 BIOPUBMEDSINGLEAID_H 00010 #define BIOPUBMEDSINGLEAID_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 BioPubmedSingleAid 00022 { 00023 friend bool operator >(const BioPubmedSingleAid& , const BioPubmedSingleAid&); 00024 friend bool operator <(const BioPubmedSingleAid& , const BioPubmedSingleAid&); 00025 friend bool operator ==(const BioPubmedSingleAid& , const BioPubmedSingleAid&); 00026 00027 00028 string aid_; 00029 public : 00030 BioPubmedSingleAid(); 00031 BioPubmedSingleAid(const string&); 00032 00033 void setAid(string&); 00034 string getAid(); 00035 void showAid(ostream& =cout); 00036 bool findAid(const string&); 00037 00038 }; 00039 00040 #endif