This was done for ICAP integration.
/*
- * $Id: RefCount.h,v 1.8 2003/08/04 22:14:37 robertc Exp $
+ * $Id: RefCount.h,v 1.9 2005/11/21 22:45:16 wessels Exp $
*
* DEBUG: section xx Refcount allocator
* AUTHOR: Robert Collins
return *this;
}
+ bool operator !() const { return !p_; }
+
C const * operator-> () const {return p_; }
C * operator-> () {return const_cast<C *>(p_); }