For those of you who name you member variables with no special notation like m_foo or foo_, how do you name parameters to your ctors and setters?>
m_foo
foo_
I tend to follow the first letter of the parameter that is being set, and disambiguate with this...
void setFoo(int f) { foo = f; }
For a simple setter, for one variable, it is pretty well clear.
Also, I often do this
int setFoo(const int f) { foo = f; }
so I can string things together.