mirror of https://github.com/OpenMW/openmw.git
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.
34 lines
590 B
C++
34 lines
590 B
C++
3 years ago
|
#ifndef OPENMW_COMPONENTS_MISC_NOTNULLPTR_H
|
||
|
#define OPENMW_COMPONENTS_MISC_NOTNULLPTR_H
|
||
|
|
||
|
#include <cassert>
|
||
|
#include <cstddef>
|
||
|
#include <type_traits>
|
||
|
|
||
|
namespace Misc
|
||
|
{
|
||
|
template <class T>
|
||
|
class NotNullPtr
|
||
|
{
|
||
|
public:
|
||
|
NotNullPtr(T* value)
|
||
|
: mValue(value)
|
||
|
{
|
||
|
assert(mValue != nullptr);
|
||
|
}
|
||
|
|
||
|
NotNullPtr(std::nullptr_t) = delete;
|
||
|
|
||
|
operator T*() const { return mValue; }
|
||
|
|
||
|
T* operator->() const { return mValue; }
|
||
|
|
||
|
T& operator*() const { return *mValue; }
|
||
|
|
||
|
private:
|
||
|
T* mValue;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|