BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioSwissProtSq.h
Go to the documentation of this file.
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 BIOSWISSPROTSQ_H
00010 #define BIOSWISSPROTSQ_H
00011 
00012 using namespace std;
00013 #include <string>
00014 #include <iostream>
00015 
00016 
00017 class BioSwissProtSq 
00018 {
00019         string sq_;
00020         public:
00021                 BioSwissProtSq();  
00022                 BioSwissProtSq(const string& sq);
00023     void setSq(string &);
00024                 long getMolecularWeight();
00025                 long getNumberOfAminoAcids();
00026     void showSq(ostream & = cout);
00027 };
00028 
00029 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines