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 Prasad, B.V.L.S. 00006 Contact: burrashiva@yahoo.com 00007 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00008 *****************************************************************************/ 00009 #ifndef BIOEMBLKW_H 00010 #define BIOEMBLKW_H 00011 00012 using namespace std; 00013 #include <string> 00014 #include <vector> 00015 #include <fstream> 00016 #include <iostream> 00017 00018 class BioEmblKw 00019 { 00020 vector<string> kw_; 00021 public: 00022 BioEmblKw(); 00023 BioEmblKw(const string&); 00024 00025 void setKw(const string& ); 00026 int getNumberOfKws(); 00027 00028 void showKw(ostream& = cout); 00029 bool findKw(const string&); 00030 }; 00031 00032 #endif