BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioPubmedLa.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 BIOPUBMEDLA_H
00011 #define BIOPUBMEDLA_H
00012 
00013 
00014 #include <string>
00015 #include <fstream>
00016 #include <iostream>
00017 #include <cstdio>
00018 #include <cstdlib>
00019 
00020 
00021 using namespace std;
00022 
00023 class BioPubmedLa
00024 {
00025         string la_;
00026         protected :
00027                 void setLa(string); 
00028         public :
00029                 BioPubmedLa();
00030                 BioPubmedLa(const string& fn_);
00031 
00032                 void showLa(ostream& = cout);
00033                 string getLa();
00034     bool findLa(const string &);
00035 };      
00036 
00037 #endif
00038 
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines