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

#include <qpdf/QPDFObject_private.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;
}