In c# you can have descriptions like this:
/// <summary>
/// Return true if channel contains the given user name
/// </summary>
/// <param name="user"></param>
/// <returns></returns>
public bool ContainsUser(string user)
{ ...
Is anything like that standardised or widely used in c++? Are some IDE's able to parse this kind of information just like Visual Studio does it in c# and display some hints thanks to that?