00001 /* -*- mode: c++; c-basic-offset: 4; -*- */ 00002 #ifndef SENDS_TEMPLATE_STAGE_HH 00003 #define SENDS_TEMPLATE_STAGE_HH 00004 00005 #include "seda_stage.hh" 00006 00007 namespace sends { 00008 00009 00020 class template_stage : public seda_stage { 00021 public: 00031 template_stage(int nThread, int nTrans); 00032 00036 virtual ~template_stage(void); 00037 00044 void filter(transaction* trans); 00045 00051 const char* stage_name(void) const; 00052 00053 private: 00054 }; 00055 } 00056 00057 #endif // !defined(SENDS_TEMPLATE_STAGE_HH)
1.5.5