diff --git a/src/util/refptr.h b/src/util/refptr.h index 54b7847..7455a9e 100644 --- a/src/util/refptr.h +++ b/src/util/refptr.h @@ -8,12 +8,12 @@ template class refptr { public: - refptr(); - refptr(T * ptr); - refptr(const refptr & orig); - refptr & operator=(const refptr & orig); - refptr & operator=(T * ptr); - ~refptr(); + refptr(); + refptr(T * ptr); + refptr(const refptr & orig); + refptr & operator=(const refptr & orig); + refptr & operator=(T * ptr); + ~refptr(); T & operator*() const; T * operator->() const; bool isNull() const { return m_ptr == NULL; }