00001 // written by png shao wei 00002 00003 #ifndef PRECENTRY_H 00004 #define PRECENTRY_H 00005 00006 class PreCEntry { 00007 public: 00008 int first; 00009 int second; 00010 double third; 00011 00012 PreCEntry(int f, int s, double t); 00013 00014 void putCEntry(int f, int s, double t); 00015 bool operator<(const PreCEntry &rhs) const; 00016 bool operator==(const PreCEntry &rhs) const; 00017 }; 00018 00019 #endif