This feature is available from version 1-9-1.
It is now possible to convert a enumeration into its text value.
To use the feature call the function **GetEnumAsString_<enum type>(_ KINT32 Value );**
If we wanted to know what the value 1000 was in the enum WarheadType we would call:
KString s = GetEnumAsStringWarheadType( 1000 );
The variable _s_ would now contain _"HighExplosive_HE_Warhead"._
Using the PDU_Factory class we could print out each PDU type.
...
auto_ptr<Header> pHeader = Factory.Decode( cBuffer, ui32Recv );
cout