mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-02 03:42:30 +00:00
12 lines
257 B
C++
12 lines
257 B
C++
#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;
|
|
}
|