aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDFObject_private.hh
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/qpdf/QPDFObject_private.hh')
-rw-r--r--libqpdf/qpdf/QPDFObject_private.hh14
1 files changed, 7 insertions, 7 deletions
diff --git a/libqpdf/qpdf/QPDFObject_private.hh b/libqpdf/qpdf/QPDFObject_private.hh
index 84aaabe4..42bd02b5 100644
--- a/libqpdf/qpdf/QPDFObject_private.hh
+++ b/libqpdf/qpdf/QPDFObject_private.hh
@@ -16,14 +16,14 @@
class QPDF;
class QPDFObjectHandle;
-class QPDFValueProxy
+class QPDFObject
{
friend class QPDFValue;
public:
- QPDFValueProxy() = default;
+ QPDFObject() = default;
- std::shared_ptr<QPDFValueProxy>
+ std::shared_ptr<QPDFObject>
shallowCopy()
{
return value->shallowCopy();
@@ -91,12 +91,12 @@ class QPDFValueProxy
return value->getParsedOffset();
}
void
- assign(std::shared_ptr<QPDFValueProxy> o)
+ assign(std::shared_ptr<QPDFObject> o)
{
value = o->value;
}
void
- swapWith(std::shared_ptr<QPDFValueProxy> o)
+ swapWith(std::shared_ptr<QPDFObject> o)
{
auto v = value;
value = o->value;
@@ -148,8 +148,8 @@ class QPDFValueProxy
}
private:
- QPDFValueProxy(QPDFValueProxy const&) = delete;
- QPDFValueProxy& operator=(QPDFValueProxy const&) = delete;
+ QPDFObject(QPDFObject const&) = delete;
+ QPDFObject& operator=(QPDFObject const&) = delete;
std::shared_ptr<QPDFValue> value;
};