aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4persistent_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2014-01-27 14:58:52 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-07 10:44:00 +0100
commit39d7e330e64c2132828a040497a5b7326202b5b9 (patch)
tree7c5568b5ba0ab6fed316bb88d229e0496ad3c6fd /src/qml/jsruntime/qv4persistent_p.h
parent927a46b1af9728c770dabb82f0b2233600636d2a (diff)
Make the Ref classes not template based
Move to a class hierarchy that mirrors the main classes. This will allow moving functionality over into the Ref classes, as the current Managed classes become mainly something that holds the data. This is required to make objects movable by the GC. Change-Id: I4ca88ab0e5d8c88c8dc56d51937990500a33e0d9 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4persistent_p.h')
-rw-r--r--src/qml/jsruntime/qv4persistent_p.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/qml/jsruntime/qv4persistent_p.h b/src/qml/jsruntime/qv4persistent_p.h
index 34cf9ba50d..21f37f3d96 100644
--- a/src/qml/jsruntime/qv4persistent_p.h
+++ b/src/qml/jsruntime/qv4persistent_p.h
@@ -84,14 +84,13 @@ public:
PersistentValue(ReturnedValue val);
template<typename T>
PersistentValue(Returned<T> *obj);
- template<typename T>
- PersistentValue(const ManagedRef<T> obj);
+ PersistentValue(const ManagedRef obj);
PersistentValue &operator=(const ValueRef other);
+ PersistentValue &operator=(const ScopedValue &other);
PersistentValue &operator =(ReturnedValue other);
template<typename T>
PersistentValue &operator=(Returned<T> *obj);
- template<typename T>
- PersistentValue &operator=(const ManagedRef<T> obj);
+ PersistentValue &operator=(const ManagedRef obj);
~PersistentValue();
ReturnedValue value() const {