QPDF_json.cc 478 Bytes
#include <qpdf/QPDF.hh>

#include <qpdf/FileInputSource.hh>

void
QPDF::createFromJSON(std::string const& json_file)
{
    createFromJSON(std::make_shared<FileInputSource>(json_file.c_str()));
}

void
QPDF::createFromJSON(std::shared_ptr<InputSource>)
{
    // QXXXQ
}

void
QPDF::updateFromJSON(std::string const& json_file)
{
    updateFromJSON(std::make_shared<FileInputSource>(json_file.c_str()));
}

void
QPDF::updateFromJSON(std::shared_ptr<InputSource>)
{
    // QXXXQ
}