BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioFTKSingleUnsure.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 BIOFTKSINGLEUNSURE_H 
00011 #define BIOFTKSINGLEUNSURE_H
00012 
00013 using namespace std;
00014 #include <string>
00015 #include <fstream>
00016 #include <iostream>
00017 #include <vector>
00018 
00019 #include "BioFTQCitation.h"
00020 #include "BioFTQDbXref.h"
00021 #include "BioFTQEvidence.h"
00022 #include "BioFTQGene.h"
00023 #include "BioFTQLabel.h"
00024 #include "BioFTQLocusTag.h"
00025 #include "BioFTQMap.h"
00026 #include "BioFTQNote.h"
00027 #include "BioFTQReplace.h"
00028 #include "BioFTQUsedIn.h"
00029 #include "BioFTLBaseRange.h"
00030 
00031 class BioFTKSingleUnsure : public BioFTQNote, public BioFTQCitation, 
00032         public BioFTQDbXref, public BioFTQEvidence, public BioFTQGene, 
00033         public BioFTQLabel, public BioFTQLocusTag, public BioFTQUsedIn, 
00034         public BioFTQMap, public BioFTQReplace, public BioFTLBaseRange
00035 {
00036                    friend bool operator >(const BioFTKSingleUnsure& , const BioFTKSingleUnsure&);
00037                    friend bool operator <(const BioFTKSingleUnsure& , const BioFTKSingleUnsure&);
00038                    friend bool operator ==(const BioFTKSingleUnsure& , const BioFTKSingleUnsure&);
00039 
00040 public:
00041         BioFTKSingleUnsure();
00042         BioFTKSingleUnsure(const string& de_);
00043 
00044 
00045         void setFTKSingleUnsure(vector<string> );
00046   void showUnsure(ostream & = cout,string x = " ");
00047     void showFeatureQualifiers(ostream & os = cout);
00048 };
00049 
00050 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines