aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDFValue.cc
blob: 8a6222d2293ade22ebce327d1c35a1b9145585bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <qpdf/QPDFValue.hh>

#include <qpdf/QPDFObject.hh>

std::shared_ptr<QPDFObject>
QPDFValue::do_create(QPDFValue* object)
{
    std::shared_ptr<QPDFObject> obj(new QPDFObject());
    obj->value = std::shared_ptr<QPDFValue>(object);
    return obj;
}