mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 04:45:43 +00:00
[ROSAUTOTEST] Change custom auto_array_ptr to std::unique_ptr
This commit is contained in:
parent
296192685b
commit
9ff3adb7d7
5 changed files with 20 additions and 83 deletions
|
@ -1,64 +0,0 @@
|
|||
/*
|
||||
* PROJECT: ReactOS Automatic Testing Utility
|
||||
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
||||
* PURPOSE: Template similar to std::auto_ptr for arrays
|
||||
* COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
|
||||
*/
|
||||
|
||||
template<typename Type>
|
||||
class auto_array_ptr
|
||||
{
|
||||
private:
|
||||
Type* m_Ptr;
|
||||
|
||||
public:
|
||||
typedef Type element_type;
|
||||
|
||||
/* Construct an auto_array_ptr from a pointer */
|
||||
explicit auto_array_ptr(Type* Ptr = 0) throw()
|
||||
: m_Ptr(Ptr)
|
||||
{
|
||||
}
|
||||
|
||||
/* Construct an auto_array_ptr from an existing auto_array_ptr */
|
||||
auto_array_ptr(auto_array_ptr<Type>& Right) throw()
|
||||
: m_Ptr(Right.release())
|
||||
{
|
||||
}
|
||||
|
||||
/* Destruct the auto_array_ptr and remove the corresponding array from memory */
|
||||
~auto_array_ptr() throw()
|
||||
{
|
||||
delete[] m_Ptr;
|
||||
}
|
||||
|
||||
/* Get the pointer address */
|
||||
Type* get() const throw()
|
||||
{
|
||||
return m_Ptr;
|
||||
}
|
||||
|
||||
/* Release the pointer */
|
||||
Type* release() throw()
|
||||
{
|
||||
Type* Tmp = m_Ptr;
|
||||
m_Ptr = 0;
|
||||
|
||||
return Tmp;
|
||||
}
|
||||
|
||||
/* Reset to a new pointer */
|
||||
void reset(Type* Ptr = 0) throw()
|
||||
{
|
||||
if(Ptr != m_Ptr)
|
||||
delete[] m_Ptr;
|
||||
|
||||
m_Ptr = Ptr;
|
||||
}
|
||||
|
||||
/* Simulate all the functionality of real arrays by casting the auto_array_ptr to Type* on demand */
|
||||
operator Type*() const throw()
|
||||
{
|
||||
return m_Ptr;
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue