Fabcoin Core  0.16.2
P2P Digital Currency
Public Member Functions | Private Attributes | List of all members
ConstByteArrayParameter Class Reference

Used to pass byte array input as part of a NameValuePairs object. More...

#include <algparam.h>

Collaboration diagram for ConstByteArrayParameter:
[legend]

Public Member Functions

 ConstByteArrayParameter (const char *data=NULL, bool deepCopy=false)
 Construct a ConstByteArrayParameter. More...
 
 ConstByteArrayParameter (const byte *data, size_t size, bool deepCopy=false)
 Construct a ConstByteArrayParameter. More...
 
template<class T >
 ConstByteArrayParameter (const T &string, bool deepCopy=false)
 Construct a ConstByteArrayParameter. More...
 
void Assign (const byte *data, size_t size, bool deepCopy)
 Assign contents from a memory buffer. More...
 
const bytebegin () const
 Pointer to the first byte in the memory block. More...
 
const byteend () const
 Pointer beyond the last byte in the memory block. More...
 
size_t size () const
 Length of the memory block. More...
 

Private Attributes

bool m_deepCopy
 
const bytem_data
 
size_t m_size
 
SecByteBlock m_block
 

Detailed Description

Used to pass byte array input as part of a NameValuePairs object.

Definition at line 29 of file algparam.h.

Constructor & Destructor Documentation

ConstByteArrayParameter::ConstByteArrayParameter ( const char *  data = NULL,
bool  deepCopy = false 
)
inline

Construct a ConstByteArrayParameter.

Parameters
dataa C-String
deepCopyflag indicating whether the data should be copied

The deepCopy option is used when the NameValuePairs object can't keep a copy of the data available

Definition at line 37 of file algparam.h.

ConstByteArrayParameter::ConstByteArrayParameter ( const byte data,
size_t  size,
bool  deepCopy = false 
)
inline

Construct a ConstByteArrayParameter.

Parameters
dataa memory buffer
sizethe length of the memory buffer
deepCopyflag indicating whether the data should be copied

The deepCopy option is used when the NameValuePairs object can't keep a copy of the data available

Definition at line 49 of file algparam.h.

template<class T >
ConstByteArrayParameter::ConstByteArrayParameter ( const T string,
bool  deepCopy = false 
)
inline

Construct a ConstByteArrayParameter.

Template Parameters
Ta std::basic_string<char> class
Parameters
stringa std::basic_string<char> class
deepCopyflag indicating whether the data should be copied

The deepCopy option is used when the NameValuePairs object can't keep a copy of the data available

Definition at line 61 of file algparam.h.

Member Function Documentation

void ConstByteArrayParameter::Assign ( const byte data,
size_t  size,
bool  deepCopy 
)
inline

Assign contents from a memory buffer.

Parameters
dataa memory buffer
sizethe length of the memory buffer
deepCopyflag indicating whether the data should be copied

The deepCopy option is used when the NameValuePairs object can't keep a copy of the data available

Definition at line 74 of file algparam.h.

const byte* ConstByteArrayParameter::begin ( ) const
inline

Pointer to the first byte in the memory block.

Definition at line 89 of file algparam.h.

Here is the caller graph for this function:

const byte* ConstByteArrayParameter::end ( ) const
inline

Pointer beyond the last byte in the memory block.

Definition at line 91 of file algparam.h.

size_t ConstByteArrayParameter::size ( ) const
inline

Length of the memory block.

Definition at line 93 of file algparam.h.

Here is the caller graph for this function:

Member Data Documentation

SecByteBlock ConstByteArrayParameter::m_block
private

Definition at line 99 of file algparam.h.

const byte* ConstByteArrayParameter::m_data
private

Definition at line 97 of file algparam.h.

bool ConstByteArrayParameter::m_deepCopy
private

Definition at line 96 of file algparam.h.

size_t ConstByteArrayParameter::m_size
private

Definition at line 98 of file algparam.h.


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