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 BIOSWISSPROTAC_H 00010 #define BIOSWISSPROTAC_H 00011 00012 using namespace std; 00013 #include <string> 00014 #include <iostream> 00015 00016 class BioSwissProtAc 00017 { 00018 00019 string ac_; 00020 public: 00021 BioSwissProtAc(); 00022 BioSwissProtAc(const string& de_); 00023 00024 void setAc(const string& ); 00025 00026 string getPrimaryAccessionNumber(); 00027 00028 void showAc(ostream& = cout); 00029 bool findAc(const string&); 00030 00031 }; 00032 00033 #endif