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