The Gaudi Framework  master (37c0b60a)
UCharDbArray Class Reference

#include </builds/gaudi/Gaudi/RootCnv/include/RootCnv/PoolClasses.h>

Public Member Functions

 UCharDbArray ()=default
 Default constructor. More...
 
virtual ~UCharDbArray ()
 Standard destructor. More...
 

Public Attributes

int m_size = 0
 Size of buffer. More...
 
unsigned char * m_buffer = nullptr
 Buffer with object content. More...
 

Detailed Description

Shadow class to mimik POOL blobs.

Definition at line 55 of file PoolClasses.h.

Constructor & Destructor Documentation

◆ UCharDbArray()

UCharDbArray::UCharDbArray ( )
default

Default constructor.

◆ ~UCharDbArray()

virtual UCharDbArray::~UCharDbArray ( )
inlinevirtual

Standard destructor.

Definition at line 64 of file PoolClasses.h.

64  {
65  if ( m_buffer ) delete[] m_buffer;
66  m_buffer = nullptr;
67  }

Member Data Documentation

◆ m_buffer

unsigned char* UCharDbArray::m_buffer = nullptr

Buffer with object content.

Definition at line 60 of file PoolClasses.h.

◆ m_size

int UCharDbArray::m_size = 0

Size of buffer.

Definition at line 58 of file PoolClasses.h.


The documentation for this class was generated from the following file:
UCharDbArray::m_buffer
unsigned char * m_buffer
Buffer with object content.
Definition: PoolClasses.h:60