ORIGINAL
Loading...
Searching...
No Matches
ownerPtr.h File Reference

Exclusive-ownership smart pointer implementation. More...

#include <utility>
#include "autoPtr.h"
#include "deleter.h"
Include dependency graph for ownerPtr.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  original::ownerPtr< TYPE, DELETER >
 Unique ownership smart pointer with move semantics. More...
 

Namespaces

namespace  original
 Main namespace for the project Original.
 

Functions

template<typename T, typename DEL = deleter<T>, typename... Args>
ownerPtr< T, DEL > original::makeOwnerPtr (Args &&... args)
 Creates a new ownerPtr managing a dynamically allocated object.
 
template<typename T, typename DEL = deleter<T[]>, typename... Args>
ownerPtr< T, DEL > original::makeOwnerPtrArray (u_integer size, Args &&... args)
 Creates a new ownerPtr managing a dynamically allocated array.
 

Detailed Description

Exclusive-ownership smart pointer implementation.

Provides move-only semantics for dynamic object ownership management. Enforces single ownership through deleted copy operations and supports custom deleters. Inherits reference counting infrastructure from autoPtr base class.