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 BIOGENBANKFEATURES_H 00012 #define BIOGENBANKFEATURES_H 00013 00014 using namespace std; 00015 #include <string> 00016 #include "BioFeatures.h" 00017 #include "BioGenBankSequence.h" 00018 00019 class BioGenBankFeatures : public BioFeatures, public BioGenBankSequence 00020 { 00021 public: 00022 BioGenBankFeatures(){} 00023 BioGenBankFeatures(const string& de_); 00024 void showFeatures(ostream & os = cout); 00025 00026 }; 00027 00028 #endif