BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 /*************************************************************************** 00002 BioSwissProtOs.h - description 00003 ------------------- 00004 begin : Thu May 20 2004 00005 copyright : (C) 2004 by Helix Team 00006 email : parisodhana@helixgenomics.com 00007 ***************************************************************************/ 00008 00009 #ifndef BIOSWISSPROTOS_H 00010 #define BIOSWISSPROTOS_H 00011 00012 using namespace std; 00013 #include <string> 00014 #include <iostream> 00015 00016 class BioSwissProtOs 00017 { 00018 string os_; 00019 public: 00020 BioSwissProtOs(); 00021 BioSwissProtOs(const string&); 00022 00023 void setOs(const string& ); 00024 00025 string getOs(); 00026 00027 void showOs(ostream& = cout); 00028 bool findOs(const string&); 00029 00030 }; 00031 #endif