QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::pmr::monotonic_buffer_resource Class Reference

A just barely good enough C++ 14 emulation of monotonic_buffer_resource. More...

#include "memory_resource.hpp"

Inheritance diagram for quickcpplib::_xxx::pmr::monotonic_buffer_resource:
quickcpplib::_xxx::pmr::memory_resource

Public Member Functions

 monotonic_buffer_resource ()=default
 
 monotonic_buffer_resource (const monotonic_buffer_resource &)=delete
 
 monotonic_buffer_resource (void *buffer, size_t length)
 
monotonic_buffer_resourceoperator= (const monotonic_buffer_resource &)=delete
 
QUICKCPPLIB_NODISCARD void * allocate (size_t bytes, size_t alignment=alignof(std::max_align_t))
 
void deallocate (void *p, size_t bytes, size_t alignment=alignof(std::max_align_t))
 

Detailed Description

A just barely good enough C++ 14 emulation of monotonic_buffer_resource.

Constructor & Destructor Documentation

◆ monotonic_buffer_resource() [1/3]

quickcpplib::_xxx::pmr::monotonic_buffer_resource::monotonic_buffer_resource ( )
default

◆ monotonic_buffer_resource() [2/3]

quickcpplib::_xxx::pmr::monotonic_buffer_resource::monotonic_buffer_resource ( const monotonic_buffer_resource )
delete

◆ monotonic_buffer_resource() [3/3]

quickcpplib::_xxx::pmr::monotonic_buffer_resource::monotonic_buffer_resource ( void *  buffer,
size_t  length 
)
inline
134 : _ptr((char *) buffer)
135 , _end((char *) buffer + length)
136 {
137 }

Member Function Documentation

◆ operator=()

monotonic_buffer_resource & quickcpplib::_xxx::pmr::monotonic_buffer_resource::operator= ( const monotonic_buffer_resource )
delete

◆ allocate()

QUICKCPPLIB_NODISCARD void * quickcpplib::_xxx::pmr::memory_resource::allocate ( size_t  bytes,
size_t  alignment = alignof(std::max_align_t) 
)
inlineinherited
77 {
78 return do_allocate(bytes, alignment);
79 }

◆ deallocate()

void quickcpplib::_xxx::pmr::memory_resource::deallocate ( void *  p,
size_t  bytes,
size_t  alignment = alignof(std::max_align_t) 
)
inlineinherited
81 {
82 return do_deallocate(p, bytes, alignment);
83 }

The documentation for this class was generated from the following file: