|
||
class TDes16Overflow;
An interface that defines an overflow handler for a 16-bit descriptor.
The interface encapsulates a function that is called when an attempt to append formatted text fails because the descriptor is already at its maximum length.
A derived class must provide an implementation for the TDes16Overflow::Overflow(TDes16 &)
member function.
Defined in TDes16Overflow
:
Overflow(TDes16 &)
Handles the overflow.TDes16::AppendFormat(TRefByValue< const TDesC16 >,TDes16Overflow *,...)
Formats and appends text onto the end of this descriptor's data.virtual void Overflow(TDes16 &aDes)=0;
Handles the overflow.
This function is called when the TDes16::AppendFormat(TRefByValue< const TDesC16 >,TDes16Overflow *,...)
variant that takes an overflow handler argument, fails.
|