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 #ifndef BIOFTQDBXREF_H 00011 #define BIOFTQDBXREF_H 00012 00013 00014 using namespace std; 00015 #include <string> 00016 #include <iostream> 00017 #include <vector> 00018 00019 #include "BioFTQSingleDbXrefDmy.h" 00020 00021 class BioFTQDbXref 00022 { 00023 vector<BioFTQSingleDbXref> singleDbXref_; 00024 00025 public: 00026 BioFTQDbXref(){} 00027 BioFTQDbXref(vector<string>& bou_); 00028 00029 void setBioFTQDbXref(vector<string>& bou_); 00030 int getNumberOfDbXref(); 00031 BioFTQSingleDbXref getDbXref(int i); 00032 bool findDbXref(const string& ); 00033 void showDbXref(ostream& os=cout,string x= " "); 00034 }; 00035 #endif