-
Notifications
You must be signed in to change notification settings - Fork 90
Open
Labels
Description
I'm using your package for documenting my C++ code. For documentation I'm using Doxygen, which expects as second part of the @param line the variable name. Your package automatically generates the variable type. Is there
-
a way to change that quick-and-dirty and, much more important,
-
a chance you either change that in your package or - rather - add an option in the package settings, e. g. which part of the function declaration should automatically be added?
This is how it currently is (auto-generated comment) /** * [getTemperature description] * @param byte [description] * @return [description] */ float getTemperature(uint8_t); This is how it could be with set the second part to 'variable name' /** * [getTemperature description] * @param sensorId [description] * @return [description] */ float getTemperature(uint8_t sensorId); This would be the perfect solution, but I don't know if your package can handle this /** * [getTemperature description] * @param sensorId [description] * @return [description] */ float getTemperature(uint8_t); // parameter name is not necessary in the declaration => get the parameter name from the cpp file, if no name is given in the declaration
Reactions are currently unavailable