BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 #ifndef BIOPUBMEDAB_H 00002 #define BIOPUBMEDAB_H 00003 00004 #include <string> 00005 #include <fstream> 00006 #include <iostream> 00007 #include <vector> 00008 #include <cstdio> 00009 #include <cstdlib> 00010 00011 00012 using namespace std; 00013 00014 class BioPubmedAb 00015 { 00016 string ab_; 00017 protected : 00018 void setAb(vector<string>&); 00019 public : 00020 BioPubmedAb(); 00021 BioPubmedAb(const string& fn_); 00022 00023 void showAb(ostream& =cout); 00024 string getAb(); 00025 bool findAb(const string&); 00026 }; 00027 00028 #endif