mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 00:39:59 +00:00
46825e8a4d
This makes sure it's never erroneously optimized out. NodeIndexHolders don't need to be cloned as their record index is never supposed to be changed.
36 lines
679 B
C++
36 lines
679 B
C++
#ifndef OPENMW_COMPONENTS_NIFOSG_NODEINDEXHOLDER_H
|
|
#define OPENMW_COMPONENTS_NIFOSG_NODEINDEXHOLDER_H
|
|
|
|
#include <osg/Object>
|
|
|
|
namespace NifOsg
|
|
{
|
|
|
|
class NodeIndexHolder : public osg::Object
|
|
{
|
|
public:
|
|
NodeIndexHolder() = default;
|
|
NodeIndexHolder(int index)
|
|
: mIndex(index)
|
|
{
|
|
}
|
|
NodeIndexHolder(const NodeIndexHolder& copy, const osg::CopyOp& copyop)
|
|
: Object(copy, copyop)
|
|
, mIndex(copy.mIndex)
|
|
{
|
|
}
|
|
|
|
META_Object(NifOsg, NodeIndexHolder)
|
|
|
|
int getIndex() const { return mIndex; }
|
|
|
|
private:
|
|
|
|
// NIF record index
|
|
int mIndex{0};
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|