BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioSwissProtRc.h
Go to the documentation of this file.
00001 /***************************************************************************
00002                           BioSwissProtRc.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 BIOSWISSPROTRC_H
00018 #define BIOSWISSPROTRC_H
00019 
00020 using namespace std;
00021 #include <string>
00022 #include <iostream>
00023 
00024 class BioSwissProtRc
00025 {
00026   string plasmid_,species_,strain_,tissue_,transposon_;
00027 
00028 public:
00029   BioSwissProtRc();
00030   BioSwissProtRc(const string&);
00031 
00032   void setRc(const string& );
00033   
00034   string getPlasmid();
00035   string getSpecies();
00036   string getStrain();
00037   string getTissue();
00038   string getTransposon();
00039   
00040   void showRc(ostream& = cout);
00041 
00042 };
00043 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines