like in the title: does anyone know how to properly write Doxygen documentation of the signature of a boost::signals2
/**
* @brief aSignal
* void : aVoidReturn
* int : anInteger
* doulbe : aDouble
*/
boost::signals2::signal<void(int,double)> aSignal;
Thaanks