00001 /* -*- mode: c++; c-basic-offset: 4; -*- */ 00002 #ifndef SENDS_LOOKUP_STAGE_HH 00003 #define SENDS_LOOKUP_STAGE_HH 00004 00005 #include "seda_stage.hh" 00006 00007 namespace sends { 00008 00009 00021 class lookup_stage : public seda_stage { 00022 public: 00026 typedef transaction::gps_type gps_type; 00027 00028 public: 00038 lookup_stage(int nThread, int nTrans); 00039 00043 virtual ~lookup_stage(void); 00044 00051 void filter(transaction* trans); 00052 00058 const char* stage_name(void) const; 00059 private: 00060 }; 00061 } 00062 00063 #endif // !defined(SENDS_LOOKUP_STAGE_HH)
1.5.5