BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 /*************************************************************************** 00002 BioSwissProtCcInduction.h - description 00003 ------------------- 00004 begin : Sat May 22 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 BIOSWISSPROTCCINDUCTION_H 00018 #define BIOSWISSPROTCCINDUCTION_H 00019 00020 using namespace std; 00021 #include <string> 00022 #include <iostream> 00023 00024 class BioSwissProtCcInduction 00025 { 00026 string induction_; 00027 00028 friend bool operator >(const BioSwissProtCcInduction& , const BioSwissProtCcInduction&); 00029 friend bool operator <(const BioSwissProtCcInduction& , const BioSwissProtCcInduction&); 00030 friend bool operator ==(const BioSwissProtCcInduction& , const BioSwissProtCcInduction&); 00031 00032 public: 00033 BioSwissProtCcInduction(); 00034 BioSwissProtCcInduction(const string& de_); 00035 00036 void setCcInduction(const string& ); 00037 00038 string getCcInduction(); 00039 bool findInduction(const string&); 00040 00041 }; 00042 #endif