BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioPubmedAd.h
Go to the documentation of this file.
00001 #ifndef BIOPUBMEDAD_H
00002 #define BIOPUBMEDAD_H
00003 
00004 #include <string>
00005 #include <fstream>
00006 #include <iostream>
00007 #include <vector>
00008 #include <cstdio>
00009 #include <cstdlib>
00010 
00011 using namespace std;
00012 
00013 class BioPubmedAd
00014 {
00015         string ad_;
00016         protected :
00017                 void setAd(vector<string>&);
00018         public :
00019                 BioPubmedAd();
00020                 BioPubmedAd(const string& fn_);
00021 
00022                 void showAd(ostream& =cout);
00023     bool findAd(const string&);    
00024     string getAd();
00025 };      
00026 
00027 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines