[ROSAUTOTEST] Change custom auto_array_ptr to std::unique_ptr
[reactos.git] / modules / rostests / rosautotest / auto_array_ptr.h
diff --git a/modules/rostests/rosautotest/auto_array_ptr.h b/modules/rostests/rosautotest/auto_array_ptr.h
deleted file mode 100644 (file)
index f53c3b0..0000000
+++ /dev/null
@@ -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;
-    }
-};