BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 /**************************************************************************** 00002 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00003 The BioBhasha : The Biologist's Programming Language 00004 Version 1.0 (19th December 2001) 00005 Prasad, B.V.L.S. 00006 Contact: burrashiva@yahoo.com 00007 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00008 *****************************************************************************/ 00009 #ifndef BIOSWISSPROTID_H 00010 #define BIOSWISSPROTID_H 00011 00012 using namespace std; 00013 00014 #include <string> 00015 #include <fstream> 00016 #include <iostream> 00017 #include <sstream> 00018 00019 class BioSwissProtId 00020 { 00021 string id_; 00022 public: 00023 BioSwissProtId(); 00024 BioSwissProtId(const string& ); 00025 00026 void setId(const string& ); 00027 00028 string getEntryName(); 00029 00030 string getDataStatus(); 00031 00032 long getNumberOfAminoAcids(); 00033 void showId(ostream & = cout); 00034 bool findEntry(const string&); 00035 }; 00036 00037 #endif 00038