Implement TObj*/IObj; finish matching CStringTable

This commit is contained in:
2022-07-14 12:24:26 -04:00
parent 2ce22743e9
commit e98f62c3a6
51 changed files with 437 additions and 436 deletions

View File

@@ -13,6 +13,7 @@ public:
single_ptr(T* ptr) : x0_ptr(ptr) {}
~single_ptr() { delete x0_ptr; }
T* get() { return x0_ptr; }
const T* get() const { return x0_ptr; }
T* operator->() { return x0_ptr; }
void operator=(T* ptr) {
delete x0_ptr;