boost_sqlite 1
A sqlite C++ library
|
a view to a binary large object More...
#include <include/boost/sqlite/blob.hpp>
Public Member Functions | |
template<typename T > | |
blob_view (const T &value, typename std::enable_if< std::is_pointer< decltype(std::declval< T >().data())>::value &&std::is_convertible< decltype(std::declval< T >().size()), std::size_t >::value >::type *=nullptr) | |
Construct a blob from some other blob-like structure. | |
blob_view (const void *data, std::size_t size) | |
Construct a blob. | |
const void * | data () const |
The data in the blob. | |
std::size_t | size () const |
The size of the data int he blob, in bytes. | |