BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioSwissProtCcDatabase.h
Go to the documentation of this file.
00001 /***************************************************************************
00002                           BioSwissCcDatabase.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 BIOSWISSPROTCCDATABASE_H
00018 #define BIOSWISSPROTCCDATABASE_H
00019 
00020 using namespace std;
00021 #include <string>
00022 #include <iostream>
00023 
00024 class BioSwissProtCcDatabase
00025 {
00026   string dbName_,dbNote_,dbWWW_,dbFTP_;
00027   
00028 
00029         friend bool operator >(const BioSwissProtCcDatabase& , const BioSwissProtCcDatabase&);
00030         friend bool operator <(const BioSwissProtCcDatabase& , const BioSwissProtCcDatabase&);
00031         friend bool operator ==(const BioSwissProtCcDatabase& , const BioSwissProtCcDatabase&);
00032 
00033 public:
00034   BioSwissProtCcDatabase();
00035   BioSwissProtCcDatabase(const string& de_);
00036 
00037   void setCcDatabase(const string& );
00038 
00039   string getCcDatabaseName();
00040   string getCcDatabaseNote();
00041   string getCcDatabaseWWW();
00042   string getCcDatabaseFTP();
00043 
00044 };
00045 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines