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 BIOPUBMEDAU_H 00010 #define BIOPUBMEDAU_H 00011 00012 #include "BioPubmedSingleAu.h" 00013 #include <vector> 00014 #include <cstdio> 00015 #include <cstdlib> 00016 00017 00018 using namespace std; 00019 00020 class BioPubmedAu 00021 { 00022 vector<BioPubmedSingleAu> multiAu_; 00023 protected : 00024 void setAu(vector<string>&); 00025 public : 00026 BioPubmedAu(); 00027 BioPubmedAu(const string& fn_); 00028 00029 void showAu(ostream& =cout); 00030 00031 string getAu(int); 00032 int getNumberOfAus(); 00033 bool findAu(const string& ); 00034 }; 00035 00036 #endif