Possible Duplicate:
C/C++ Header file documentation
This is a C++ documentation question. Generally if I have a class Foo, I will put the class definition into foo.h and the implementation of the member functions into foo.cpp.
The function, therefore, appears twice (once as a forward declaration and once with the implementation). Where should I add documentation that describes what the function does (preconditions, postconditions, parameters, etc). Should I add it in the header file, the source file, or both?
The "target audience" for the documentation is me (2 months from now) and other developers working on the system.
What practice do you follow to address this documentation duality?