mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
30 lines
587 B
C++
30 lines
587 B
C++
#ifndef GAME_MWWORLD_MANUALREF_H
|
|
#define GAME_MWWORLD_MANUALREF_H
|
|
|
|
#include <boost/any.hpp>
|
|
|
|
#include "ptr.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
/// \brief Manually constructed live cell ref
|
|
class ManualRef
|
|
{
|
|
boost::any mRef;
|
|
Ptr mPtr;
|
|
|
|
ManualRef (const ManualRef&);
|
|
ManualRef& operator= (const ManualRef&);
|
|
|
|
public:
|
|
ManualRef(const MWWorld::ESMStore& store, const std::string& name, const int count = 1);
|
|
|
|
const Ptr& getPtr() const
|
|
{
|
|
return mPtr;
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif
|