In article <92589@palm-dev-forum>, [EMAIL PROTECTED] says... > > ----- Original Message ----- > From: "Martin Elzen" <[EMAIL PROTECTED]> > > > void __pushTail(void* data); > > > > Of course, in your own class definitions, you are free to use whichever > > legal way you want when choosing identifier names. However, IIRC the > > standards for C++ include the info that identifiers starting with one or > > more underscores are usually reserved for the implementor of the standard > > libraries. > > The rules are a little complicated, but leading double underscores are > forbidden for our use. However, I do prefix member variables with a single > underscore. That's legal.
It is legal as long as the first character after your underscore isn't a capitalized letter. _foo is OK, but _Foo is also an implementation- reserved identifier. -- Ben Combee <[EMAIL PROTECTED]> CodeWarrior for Palm OS technical lead Get help at http://palmoswerks.com/ -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
