clang 20.0.0git
Public Member Functions | Static Public Member Functions | List of all members
clang::OpaquePtr< PtrTy > Class Template Reference

Wrapper for void* pointer. More...

#include "clang/Sema/Ownership.h"

Inheritance diagram for clang::OpaquePtr< PtrTy >:
Inheritance graph
[legend]

Public Member Functions

 OpaquePtr (std::nullptr_t=nullptr)
 
template<typename PointeeT >
PointeeT * getPtrTo () const
 Returns plain pointer to the entity pointed by this wrapper.
 
template<typename PtrT >
PtrT getPtrAs () const
 Returns pointer converted to the specified type.
 
PtrTy get () const
 
void set (PtrTy P)
 
 operator bool () const
 
void * getAsOpaquePtr () const
 

Static Public Member Functions

static OpaquePtr make (PtrTy P)
 
static OpaquePtr getFromOpaquePtr (void *P)
 

Detailed Description

template<class PtrTy>
class clang::OpaquePtr< PtrTy >

Wrapper for void* pointer.

Template Parameters
PtrTyEither a pointer type like 'T*' or a type that behaves like a pointer.

This is a very simple POD type that wraps a pointer that the Parser doesn't know about but that Sema or another client does. The PtrTy template argument is used to make sure that "Decl" pointers are not compatible with "Type" pointers for example.

Definition at line 50 of file Ownership.h.

Constructor & Destructor Documentation

◆ OpaquePtr()

template<class PtrTy >
clang::OpaquePtr< PtrTy >::OpaquePtr ( std::nullptr_t  = nullptr)
inline

Definition at line 58 of file Ownership.h.

Member Function Documentation

◆ get()

template<class PtrTy >
PtrTy clang::OpaquePtr< PtrTy >::get ( ) const
inline