Skip to content

a well meaning and purposeful alternative to STL smart pointers.

License

Notifications You must be signed in to change notification settings

ida64/CxxMemory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CxxMemory

a well meaning and purposeful alternative to STL smart pointers.

Features

  • Shared Pointer
  • Unique Pointer

that's it, nothing else.

Usage

#include <CxxMemory/SharedPointer.h>
#include <CxxMemory/UniquePointer.h>

cxx_memory::SharedPointer<int> mySharedNumber(new int(21));
cxx_memory::UniquePointer<int> myUniqueNumber(new int(21));

Build

CxxMemory uses Premake5, read more: premake.github.io.

tl;dr run premake5 vs2022 for Visual Studio.

License

Respect the MIT license, I won't ask again.

About

a well meaning and purposeful alternative to STL smart pointers.

Topics

Resources

License

Stars

Watchers

Forks