BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioPubmedMh.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 BIOPUBMEDMH_H
00010 #define BIOPUBMEDMH_H
00011 
00012 #include "BioPubmedSingleMh.h"
00013 #include <vector>
00014 
00015 using namespace std;
00016 
00017 class BioPubmedMh
00018 {
00019         vector<BioPubmedSingleMh> multiMh_;
00020         protected :
00021                 void setMh(vector<string>&);
00022         public :
00023                 BioPubmedMh();
00024                 BioPubmedMh(const string& fn_);
00025 
00026                 void showMh(ostream& =cout);
00027                 
00028                 string getMh(int);
00029                 int getNumberOfMhs();
00030     bool findMh(const string& );
00031 };
00032 
00033 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines