#ifndef _BAKERYEXTRAS_VIEWTARGET_HH_ #define _BAKERYEXTRAS_VIEWTARGET_HH_ #include "bakery/bakery.h" namespace BakeryExtras { template< class T_Document, class T_KeyType > class View_Target : virtual public Bakery::View { public: View_Target() { } virtual ~View_Target() { } virtual void Goto(T_KeyType const &key) = 0; }; }; #endif