#ifndef BU_CACHABLE_H #define BU_CACHABLE_H namespace Bu { class Cachable { public: Cachable(); virtual ~Cachable(); virtual long getCacheId() const =0; }; template long getCacheId( const obtype *o ); template<> long getCacheId( const Cachable *o ); }; #endif