BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioFTQECNumber.h
Go to the documentation of this file.
00001 /****************************************************************************
00002 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
00003 The BioBhasha : A Programming Language for Biologist
00004 Version 1.0 (19th December 2001)
00005 Dr. Prasad, B.V.L.S.
00006 Contact: prasadbvls@helixgenomics.com
00007 Version 1.1 (23th January 2003)
00008 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
00009 *****************************************************************************/
00010 #ifndef BIOFTQECNUMBER_H
00011 #define BIOFTQECNUMBER_H
00012 
00013 
00014 using namespace std;
00015 #include <string>
00016 #include <iostream>
00017 #include <vector>
00018 
00019 
00020 class BioFTQECNumber
00021 {
00022         string eCNumber_;
00023         
00024 public: 
00025         BioFTQECNumber(){}
00026         BioFTQECNumber(const string& bou_);
00027   void setBioFTQECNumber(const string& bou_);
00028 
00029         string getECNumber();
00030 
00031         bool findECNumber(const string& );
00032   void showECNumber(ostream& os = cout,string x= " ");
00033 };
00034 
00035 
00036 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines