prime/include/rstl/single_ptr.hpp

33 lines
747 B
C++
Raw Normal View History

#ifndef _RSTL_SINGLE_PTR_HPP
#define _RSTL_SINGLE_PTR_HPP
#include "types.h"
namespace rstl {
template < typename T >
class single_ptr {
T* x0_ptr;
public:
single_ptr() : x0_ptr(nullptr) {}
single_ptr(T* ptr) : x0_ptr(ptr) {}
~single_ptr() { delete x0_ptr; }
2022-08-15 04:51:06 +00:00
T* get() const { return x0_ptr; }
// const T* get() const { return x0_ptr; }
T* operator->() { return x0_ptr; }
const T* operator->() const { return x0_ptr; }
void operator=(T* ptr) {
delete x0_ptr;
x0_ptr = ptr;
}
2022-08-16 02:14:28 +00:00
bool null() const { return x0_ptr == nullptr; }
2022-08-13 01:26:00 +00:00
T& operator*() { return *x0_ptr; }
const T& operator*() const { return *x0_ptr; }
};
2022-08-13 01:26:00 +00:00
typedef single_ptr<void> unk_singleptr;
CHECK_SIZEOF(unk_singleptr, 0x4);
} // namespace rstl
#endif