|
From: Linus A. <lin...@sm...> - 2002-03-21 18:28:07
|
Hey,
I guess we have decided to use OpenTracker coding
guidelines, to be compatible with openbeos, but I want
to add a guideline to this that the OpenTracker guideline
does not cover.
Code example:
class BClass {
public:
=09void SomeFunction( int32 aFoo );
private:
=09int32 fFoo;
};
void BClass::SomeFunction( int32 aFoo ) {
=09int32 foo =3D aFoo;
}
I have gotten used to this style, to differ between arguments
to functions and private variable in functions. 'a' does not
necessarily be the prefix, though, but I would like us to
use a similiar coding style.
Comments?
Regards
/Procton
|