00001 00009 #ifndef DBCache_HPP 00010 #define DBCache_HPP 00011 00012 #include "common.hpp" 00013 00014 00047 template <class T_R> 00048 class DBCache : public T_R 00049 { 00050 public: 00051 typedef typename T_R::params_t params_t; 00052 DBCache( const params_t* par ): 00053 T_R(par){} 00054 00055 template <class BIS> counter_t nextTransactionBIS( 00056 BIS& transaction ){} 00057 00058 template <class UAC> bool nextTransactionUAC( 00059 UAC& transaction ){} 00060 00062 void rewind(){} 00063 }; 00064 00065 #endif