You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|