template 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 inline T operator=(U operand) { TRACKER_HOOK_((intptr_t) & this->value); return this->value = (T)operand; } template inline T operator+=(U operand) { TRACKER_HOOK_((intptr_t) & this->value); return this->value += (T)operand; } template inline T operator-=(U operand) { TRACKER_HOOK_((intptr_t) & this->value); return this->value -= (T)operand; } template inline T operator*=(U operand) { TRACKER_HOOK_((intptr_t) & this->value); return this->value *= (T)operand; } template inline T operator/=(U operand) { TRACKER_HOOK_((intptr_t) & this->value); return this->value /= (T)operand; } template inline T operator|=(U operand) { TRACKER_HOOK_((intptr_t) & this->value); return this->value |= (T)operand; } template inline T operator&=(U operand) { TRACKER_HOOK_((intptr_t) & this->value); return this->value &= (T)operand; } template inline T operator^=(U operand) { TRACKER_HOOK_((intptr_t) & this->value); return this->value ^= (T)operand; } template inline T operator<<=(U operand) { TRACKER_HOOK_((intptr_t) & this->value); return this->value <<= (T)operand; } template inline T operator>>=(U 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; } }; template struct is_signed> { static constexpr bool value = std::is_signed::value; }; template struct is_unsigned> { static constexpr bool value = std::is_unsigned::value; };