BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioPubmedIs.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 Prasad, B.V.L.S.
00006 Contact: prasad@helixgenomics.com
00007 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
00008 *****************************************************************************/
00009 
00010 #ifndef BIOPUBMEDIS_H
00011 #define BIOPUBMEDIS_H
00012 
00013 
00014 #include <string>
00015 #include <fstream>
00016 #include <iostream>
00017 #include <cstdio>
00018 #include <cstdlib>
00019 
00020 using namespace std;
00021 
00022 class BioPubmedIs
00023 {
00024         string is_;
00025         protected :
00026                 void setIs(string); 
00027         public :
00028                 BioPubmedIs();
00029                 BioPubmedIs(const string& fn_);
00030 
00031                 void showIs(ostream& = cout);
00032                 string getIs();
00033     bool findIs(const string& );
00034 };      
00035 
00036 #endif
00037 
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines