On Thu, Jun 22, 2006 at 02:39:21PM -0500, Bo Peng wrote:
> >We have abondoned Coding_Rules(?) a long time ago and used 'do whatever
> >the majority in src/* does'
>
> Because it is easier to change the rules than change source code. BTW,
> the style I like is:
>
> class ThisClass
> {
> int thisFunction();
>
> private:
> int m_member;
> }
Too much typing. I am forced to use the m_ prefix (ideally with the
whole Hungarian 'sub-prefixes') at work and I know I hate it.
The trailing underscore for data members is the best compromise as far
as I am concerned.
> int g_someGlobalStuff;
Such things should not exist anyway.
Andre'