SDL  2.0
VULKAN_HPP_NAMESPACE::ObjectDestroy< OwnerType, Dispatch > Class Template Reference

#include <vulkan.hpp>

+ Collaboration diagram for VULKAN_HPP_NAMESPACE::ObjectDestroy< OwnerType, Dispatch >:

Public Member Functions

 ObjectDestroy (OwnerType owner=OwnerType(), Optional< const AllocationCallbacks > allocationCallbacks=nullptr, Dispatch const &dispatch=Dispatch())
 
OwnerType getOwner () const
 
Optional< const AllocationCallbacksgetAllocator () const
 

Protected Member Functions

template<typename T >
void destroy (T t)
 

Private Attributes

OwnerType m_owner
 
Optional< const AllocationCallbacksm_allocationCallbacks
 
Dispatch const * m_dispatch
 

Detailed Description

template<typename OwnerType, typename Dispatch>
class VULKAN_HPP_NAMESPACE::ObjectDestroy< OwnerType, Dispatch >

Definition at line 2514 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ ObjectDestroy()

template<typename OwnerType, typename Dispatch>
VULKAN_HPP_NAMESPACE::ObjectDestroy< OwnerType, Dispatch >::ObjectDestroy ( OwnerType  owner = OwnerType(),
Optional< const AllocationCallbacks allocationCallbacks = nullptr,
Dispatch const &  dispatch = Dispatch() 
)
inline

Definition at line 2517 of file vulkan.hpp.

2518  : m_owner( owner )
2519  , m_allocationCallbacks( allocationCallbacks )
2520  , m_dispatch( &dispatch )
2521  {}
Optional< const AllocationCallbacks > m_allocationCallbacks
Definition: vulkan.hpp:2535

Member Function Documentation

◆ destroy()

template<typename OwnerType, typename Dispatch>
template<typename T >
void VULKAN_HPP_NAMESPACE::ObjectDestroy< OwnerType, Dispatch >::destroy ( T  t)
inlineprotected

Definition at line 2528 of file vulkan.hpp.

2529  {
2530  m_owner.destroy( t, m_allocationCallbacks, *m_dispatch );
2531  }
Optional< const AllocationCallbacks > m_allocationCallbacks
Definition: vulkan.hpp:2535
GLdouble GLdouble t
Definition: SDL_opengl.h:2071

◆ getAllocator()

template<typename OwnerType, typename Dispatch>
Optional<const AllocationCallbacks> VULKAN_HPP_NAMESPACE::ObjectDestroy< OwnerType, Dispatch >::getAllocator ( ) const
inline

Definition at line 2524 of file vulkan.hpp.

2524 { return m_allocationCallbacks; }
Optional< const AllocationCallbacks > m_allocationCallbacks
Definition: vulkan.hpp:2535

◆ getOwner()

template<typename OwnerType, typename Dispatch>
OwnerType VULKAN_HPP_NAMESPACE::ObjectDestroy< OwnerType, Dispatch >::getOwner ( ) const
inline

Definition at line 2523 of file vulkan.hpp.

2523 { return m_owner; }

Field Documentation

◆ m_allocationCallbacks

template<typename OwnerType, typename Dispatch>
Optional<const AllocationCallbacks> VULKAN_HPP_NAMESPACE::ObjectDestroy< OwnerType, Dispatch >::m_allocationCallbacks
private

Definition at line 2535 of file vulkan.hpp.

◆ m_dispatch

template<typename OwnerType, typename Dispatch>
Dispatch const* VULKAN_HPP_NAMESPACE::ObjectDestroy< OwnerType, Dispatch >::m_dispatch
private

Definition at line 2536 of file vulkan.hpp.

◆ m_owner

template<typename OwnerType, typename Dispatch>
OwnerType VULKAN_HPP_NAMESPACE::ObjectDestroy< OwnerType, Dispatch >::m_owner
private

Definition at line 2534 of file vulkan.hpp.


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