BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioPubmedSinglePt.h
Go to the documentation of this file.
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 BIOPUBMEDSINGLEPT_H
00010 #define BIOPUBMEDSINGLEPT_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 BioPubmedSinglePt
00022 {
00023        friend bool operator >(const BioPubmedSinglePt& , const BioPubmedSinglePt&);
00024        friend bool operator <(const BioPubmedSinglePt& , const BioPubmedSinglePt&);
00025        friend bool operator ==(const BioPubmedSinglePt& , const BioPubmedSinglePt&);
00026 
00027         string pt_;
00028         public :
00029                 BioPubmedSinglePt();
00030                 BioPubmedSinglePt(const string&);
00031 
00032                 void setPt(string&);
00033                 string getPt();
00034                 void showPt(ostream& =cout);
00035     bool findPt(const string&);
00036 };
00037 
00038 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines