BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 /*************************************************************************** 00002 copyright : Helix Genomics Pvt. Ltd., 2004 00003 YABLA : Yet Another BLAST Like Algorithm 00004 ***************************************************************************/ 00005 #ifndef BIOWORDHIT 00006 #define BIOWORDHIT 00007 00008 using namespace std; 00009 00010 class BioWordHit 00011 { 00012 00013 public: 00014 // BioWordHit(); 00015 int p1; 00016 int p2; 00017 00018 friend bool operator<( const BioWordHit& x, const BioWordHit& y) 00019 { 00020 return true; 00021 } 00022 00023 friend bool operator>( const BioWordHit& x, const BioWordHit& y) 00024 { 00025 return true; 00026 } 00027 00028 friend bool operator==( const BioWordHit& x, const BioWordHit& y) 00029 { 00030 return true; 00031 } 00032 00033 00034 }; 00035 00036 #endif