- Documentation
- Reference manual
- Packages
- A C++ interface to SWI-Prolog
- A C++ interface to SWI-Prolog
- Overview
- Blobs
- A review of C++ features used by the API
- How to define a blob using C++
- The life of a PlBlob
- C++ exceptions and blobs
- Sample PlBlob code (connection to database)
- Discussion of the sample PlBlob code
- Sample PlBlob code (wrapping a pointer)
- Discussion of the sample PlBlob code (wrapping a pointer)
- Identifying blobs by atoms
- Blobs
- Overview
- A C++ interface to SWI-Prolog
- A C++ interface to SWI-Prolog
1.6.8.2 How to define a blob using C++
TL;DR: Use PL_BLOB_DEFINITION() to define the blob with the
flag
PL_BLOB_NOCOPY
and the default PlBlob
wrappers; define your struct as a subclass of PlBlob
with
no copy constructor, move constructor, or assignment operator; create a
blob using
std::unique_ptr<PlBlob>(new ...)
, call PlTerm::unify_blob().
Optionally, define one or more of: compare_fields(), write_fields(),
save(), load() methods (these are described after the
sample code).