BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioSwissProtCcFunction.h
Go to the documentation of this file.
00001 /***************************************************************************
00002                           BioSwissProtCcFunction.h  -  description
00003                              -------------------
00004     begin                : Sat May 22 2004
00005     copyright            : (C) 2004 by Helix Team
00006     email                : parisodhana@helixgenomics.com
00007  ***************************************************************************/
00008 #ifndef BIOSWISSPROTCCFUNCTION_H
00009 #define BIOSWISSPROTCCFUNCTION_H
00010 
00011 using namespace std;
00012 #include <string>
00013 #include <iostream>
00014 
00015 class BioSwissProtCcFunction
00016 {
00017   string function_;
00018 
00019         friend bool operator >(const BioSwissProtCcFunction& , const BioSwissProtCcFunction&);
00020         friend bool operator <(const BioSwissProtCcFunction& , const BioSwissProtCcFunction&);
00021         friend bool operator ==(const BioSwissProtCcFunction& , const BioSwissProtCcFunction&);
00022 
00023 public:
00024   BioSwissProtCcFunction();
00025   BioSwissProtCcFunction(const string& de_);
00026 
00027   void setCcFunction(const string& );
00028 
00029   string getCcFunction();
00030   bool findFunction(const string&);
00031 
00032 };
00033 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines