Esempio n. 1
0
BigNumber::BigNumber(const BigNumber& rhs)
{
#ifdef SHOW_DEBUG_MESSAGES
	printf("%p - BigNumber::BigNumber(const BigNumber& = %p) called\n", this, &rhs);
	printf("%p valueFromCopy: %s\n", &rhs, rhs.convertToChar());
#endif
	_value = fullCopyOfValues(rhs._value);
	_sign = rhs._sign;
	_stringFormat = NULL;
#ifdef SHOW_DEBUG_MESSAGES
	printf("%p valueAterCopy: %s\n", this, this->convertToChar());
#endif	
}