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 BIOPUBMEDSINGLEGR_H 00010 #define BIOPUBMEDSINGLEGR_H 00011 00012 #include <string> 00013 #include <fstream> 00014 #include <iostream> 00015 00016 using namespace std; 00017 00018 class BioPubmedSingleGr 00019 { 00020 friend bool operator >(const BioPubmedSingleGr& , const BioPubmedSingleGr&); 00021 friend bool operator <(const BioPubmedSingleGr& , const BioPubmedSingleGr&); 00022 friend bool operator ==(const BioPubmedSingleGr& , const BioPubmedSingleGr&); 00023 00024 string gr_; 00025 public : 00026 BioPubmedSingleGr(); 00027 BioPubmedSingleGr(const string&); 00028 00029 void setGr(string&); 00030 string getGr(); 00031 void showGr(ostream& = cout); 00032 bool findGr(const string&); 00033 }; 00034 00035 #endif