mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 15:29:55 +00:00
Disable copy constructor and operator= in PartHolder
This commit is contained in:
parent
fc93dc6195
commit
c62c1693e9
1 changed files with 3 additions and 0 deletions
|
@ -61,6 +61,9 @@ public:
|
|||
|
||||
private:
|
||||
osg::ref_ptr<osg::Node> mNode;
|
||||
|
||||
void operator= (const PartHolder&);
|
||||
PartHolder(const PartHolder&);
|
||||
};
|
||||
typedef boost::shared_ptr<PartHolder> PartHolderPtr;
|
||||
|
||||
|
|
Loading…
Reference in a new issue