mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 13:01:21 +00:00
5be379c6b0
git-svn-id: https://svn.eduke32.com/eduke32@7691 1a8010ca-5511-0410-912e-c29ae57300e0
109 lines
2.9 KiB
C++
109 lines
2.9 KiB
C++
template<typename T>
|
|
class TRACKER_NAME__
|
|
{
|
|
public:
|
|
T value;
|
|
|
|
inline T *operator&()
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return &this->value;
|
|
}
|
|
|
|
inline T operator++()
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return ++this->value;
|
|
}
|
|
|
|
inline T operator++(int)
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return this->value++;
|
|
}
|
|
|
|
inline T operator--()
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return --this->value;
|
|
}
|
|
|
|
inline T operator--(int)
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return this->value--;
|
|
}
|
|
|
|
template <typename Tt> inline T operator=(Tt operand)
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return this->value = (T)operand;
|
|
}
|
|
|
|
template <typename Tt> inline T operator+=(Tt operand)
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return this->value += (T)operand;
|
|
}
|
|
|
|
template <typename Tt> inline T operator-=(Tt operand)
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return this->value -= (T)operand;
|
|
}
|
|
|
|
template <typename Tt> inline T operator*=(Tt operand)
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return this->value *= (T)operand;
|
|
}
|
|
|
|
template <typename Tt> inline T operator/=(Tt operand)
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return this->value /= (T)operand;
|
|
}
|
|
|
|
template <typename Tt> inline T operator|=(Tt operand)
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return this->value |= (T)operand;
|
|
}
|
|
|
|
template <typename Tt> inline T operator&=(Tt operand)
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return this->value &= (T)operand;
|
|
}
|
|
|
|
template <typename Tt> inline T operator^=(Tt operand)
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return this->value ^= (T)operand;
|
|
}
|
|
|
|
template <typename Tt> inline T operator<<=(Tt operand)
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return this->value <<= (T)operand;
|
|
}
|
|
|
|
template <typename Tt> inline T operator>>=(Tt operand)
|
|
{
|
|
TRACKER_HOOK_((intptr_t) & this->value);
|
|
return this->value >>= (T)operand;
|
|
}
|
|
|
|
inline operator T() const { return this->value; }
|
|
|
|
inline T cast() const { return this->value; }
|
|
|
|
struct is_signed
|
|
{
|
|
static constexpr bool value = std::is_signed<T>::value;
|
|
};
|
|
struct is_unsigned
|
|
{
|
|
static constexpr bool value = std::is_unsigned<T>::value;
|
|
};
|
|
};
|