Skip to content
Snippets Groups Projects
Commit 9c06b4f9 authored by Christian Engwer's avatar Christian Engwer
Browse files

* SmartPointer stores the referenced Object also internally as a

  pointer.
* This pointer can be passed to the SmartPointer Constructor

[[Imported from SVN: r5503]]
parent 44b1057f
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,14 @@ namespace Dune
*/
inline SmartPointer();
/**
* @brief Constructs a new smart pointer from a preallocated Object.
*
* note: the object must be allocated on the heap and after handing the pointer to
* SmartPointer the ownership of the pointer is also handed to the SmartPointer.
*/
inline SmartPointer(T * pointer);
/**
* @brief Copy constructor.
* @param pointer The object to copy.
......@@ -81,16 +89,24 @@ namespace Dune
/** @brief The number of references. */
int count_;
/** @brief The representative. */
MemberType rep_;
/** @brief Constructor. */
PointerRep(const MemberType& rep) : count_(1), rep_(rep){}
MemberType * rep_;
/** @brief Default Constructor. */
PointerRep() : count_(1), rep_(new MemberType) {}
/** @brief Constructor from existing Pointer. */
PointerRep(MemberType * p) : count_(1), rep_(p) {}
} *rep_;
};
template<class T>
inline SmartPointer<T>::SmartPointer(T * p)
{
rep_ = new PointerRep(p);
}
template<class T>
inline SmartPointer<T>::SmartPointer()
{
rep_ = new PointerRep(MemberType());
rep_ = new PointerRep;
}
template<class T>
......@@ -120,25 +136,25 @@ namespace Dune
template<class T>
inline T& SmartPointer<T>::operator*()
{
return rep_->rep_;
return *(rep_->rep_);
}
template<class T>
inline T *SmartPointer<T>::operator->()
{
return &(rep_->rep_);
return rep_->rep_;
}
template<class T>
inline const T& SmartPointer<T>::operator*() const
{
return rep_->rep_;
return *(rep_->rep_);
}
template<class T>
inline const T *SmartPointer<T>::operator->() const
{
return &(rep_->rep_);
return rep_->rep_;
}
template<class T>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment