make copy constructor of Handle class private

This commit is contained in:
wmayer
2018-09-05 22:55:33 +02:00
parent 17ce026f57
commit b5b1e96f40

View File

@@ -171,6 +171,9 @@ public:
int getRefCount(void) const;
const Handled& operator = (const Handled&);
private:
Handled(const Handled&);
private:
QAtomicInt* _lRefCount;
};