BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 /*************************************************************************** 00002 BioSwissProtSingleReference.h - description 00003 ------------------- 00004 begin : Fri May 21 2004 00005 copyright : (C) 2004 by Helix Team 00006 email : parisodhana@helixgenomics.com 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 #ifndef BIOSWISSPROTSINGLEREFERENCE_H 00018 #define BIOSWISSPROTSINGLEREFERENCE_H 00019 00020 using namespace std; 00021 #include <string> 00022 #include <iostream> 00023 #include "BioSwissProtRn.h" 00024 #include "BioSwissProtRp.h" 00025 #include "BioSwissProtRt.h" 00026 #include "BioSwissProtRa.h" 00027 #include "BioSwissProtRx.h" 00028 #include "BioSwissProtRc.h" 00029 #include "BioSwissProtRg.h" 00030 #include "BioSwissProtRl.h" 00031 00032 class BioSwissProtSingleReference : public BioSwissProtRn,public BioSwissProtRp, public BioSwissProtRg, public BioSwissProtRt, public BioSwissProtRa, public BioSwissProtRx, public BioSwissProtRc, public BioSwissProtRl 00033 { 00034 friend bool operator <(const BioSwissProtSingleReference& , const BioSwissProtSingleReference&); 00035 friend bool operator >(const BioSwissProtSingleReference& , const BioSwissProtSingleReference&); 00036 friend bool operator ==(const BioSwissProtSingleReference& , const BioSwissProtSingleReference&); 00037 00038 public: 00039 BioSwissProtSingleReference(); 00040 BioSwissProtSingleReference(const string&); 00041 00042 void setSingleReference(vector<string>); 00043 00044 void showSingleReference(ostream& = cout); 00045 bool findReference(const string&); 00046 00047 }; 00048 #endif