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 BIOEMBLFT_H 00010 #define BIOEMBLFT_H 00011 00012 using namespace std; 00013 #include <string> 00014 #include <iostream> 00015 #include <fstream> 00016 #include <vector> 00017 #include "BioFeatures.h" 00018 #include "BioEmblSequence.h" 00019 00020 class BioEmblFt : public BioFeatures, public BioEmblSequence 00021 { 00022 00023 public: 00024 BioEmblFt(){} 00025 BioEmblFt(const string& de_); 00026 void showFeatures(ostream & = cout); 00027 void setFt(vector <string>& ); 00028 }; 00029 00030 #endif