BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 /**************************************************************************** 00002 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00003 The BioBhasha : A Programming Language for Biologist 00004 Version 1.0 (19th December 2001) 00005 Dr. Prasad, B.V.L.S. 00006 Contact: prasadbvls@helixgenomics.com 00007 Version 1.1 (23th January 2003) 00008 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00009 *****************************************************************************/ 00010 00011 #ifndef BIOGENBANKKEYWORDS_H 00012 #define BIOGENBANKKEYWORDS_H 00013 00014 using namespace std; 00015 00016 #include <string> 00017 #include <vector> 00018 #include <fstream> 00019 #include <iostream> 00020 00021 00022 class BioGenBankKeywords 00023 { 00024 00025 vector<string>keywords_; 00026 00027 00028 public: 00029 BioGenBankKeywords(); 00030 ~BioGenBankKeywords(); 00031 BioGenBankKeywords(const string& de_); 00032 00033 void setKeywords(vector<string> ); 00034 00035 void showKeywords(ostream& = cout); 00036 00037 int getKeywordsSize(); 00038 00039 bool findKeyword(const string& ); 00040 00041 00042 }; 00043 00044 #endif