Path: utzoo!attcan!utgpu!jarvis.csri.toronto.edu!mailrus!iuvax!rutgers!columbia!close.columbia.edu! From: @close.columbia.edum) (f) Newsgroups: comp.lang.c++ Subject: Trick for identifiers > 32 Keywords: C++ DOS OS/2 Message-ID: <6506@columbia.edu> Date: 20 Sep 89 20:10:39 GMT References: <293@softeng1.UUCP> <236@dbase.UUCP> <977@ncratl.Atlanta.NCR.COM> Reply-To: kearns@cs.columbia.edu Organization: Columbia University Department of Computer Science Lines: 12 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