[comp.lang.c++] Trick for identifiers > 32

@close.columbia.edum) (f) (09/21/89)

Hi.  Here is a nifty trick I use to get around the problem of
translators that generate names which are not unique in the first
32 characters.  

If your class is called "BigString", then at the top of your
BigString.h file put 
"#define BigString bS"

This makes the internal name of BigString the much shorter name bS
and has always solved my problems.  

-steve