BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 /*************************************************************************** 00002 BioEmblReference.h - description 00003 ------------------- 00004 begin : Mon May 31 2004 00005 copyright : (C) 2004 by Helix Team 00006 email : parisodhana@helixgenomics.com 00007 ***************************************************************************/ 00008 00009 #ifndef BIOEMBLREFERENCE_H 00010 #define BIOEMBLREFERENCE_H 00011 00012 using namespace std; 00013 #include <string> 00014 #include <iostream> 00015 #include <vector> 00016 #include "BioEmblSingleReference.h" 00017 00018 class BioEmblReference 00019 { 00020 vector <BioEmblSingleReference> reference_; 00021 public: 00022 00023 BioEmblReference(); 00024 BioEmblReference(const string&); 00025 00026 void setReference(vector<string>); 00027 00028 int getNumberOfReferences(); 00029 BioEmblSingleReference getReference(unsigned int i); 00030 00031 void showReference(ostream& = cout); 00032 }; 00033 00034 #endif