mirror of https://github.com/PrimeDecomp/prime.git
47 lines
1018 B
C++
47 lines
1018 B
C++
#ifndef _RSTL_AUTO_PTR
|
|
#define _RSTL_AUTO_PTR
|
|
|
|
#include "types.h"
|
|
|
|
namespace rstl {
|
|
template < typename T >
|
|
class auto_ptr {
|
|
mutable bool x0_has;
|
|
mutable T* x4_item;
|
|
|
|
public:
|
|
auto_ptr() : x0_has(false), x4_item(nullptr) {}
|
|
auto_ptr(T* ptr) : x0_has(ptr != nullptr), x4_item(ptr) {}
|
|
~auto_ptr() {
|
|
if (x0_has) {
|
|
delete x4_item;
|
|
}
|
|
}
|
|
// TODO check
|
|
auto_ptr(const auto_ptr& other) : x0_has(other.x0_has), x4_item(other.x4_item) {
|
|
other.x0_has = false;
|
|
}
|
|
auto_ptr& operator=(const auto_ptr& other) {
|
|
if (&other != this) {
|
|
if (x0_has) {
|
|
delete x4_item;
|
|
}
|
|
x0_has = other.x0_has;
|
|
x4_item = other.x4_item;
|
|
other.x0_has = false;
|
|
}
|
|
return *this;
|
|
}
|
|
T* get() const { return x4_item; }
|
|
T* operator->() const { return x4_item; }
|
|
T& operator*() const { return *x4_item; }
|
|
T* release() const {
|
|
x0_has = false;
|
|
return x4_item;
|
|
}
|
|
bool null() const { return x4_item == nullptr; }
|
|
};
|
|
} // namespace rstl
|
|
|
|
#endif // _RSTL_AUTO_PTR
|