Xavier Outhier wrote:
> BTW, maybe also the English translation should be method and not
> function. It's more common in java (and C++?) to use method instead
> of function.
It depends on the context. C++ litterature often calls the following foo:
class Toto {
void foo();
};
a member function.
Plain old C has no concept of method whatsoever, and IIRC doxygen does
include provisions for C.
-- Cyrille
|