I know I can document a struct member variable inside the struct with doxygen:
struct myStruct {
int a; ///< a is an int
}
But how can I put the documentation outside the struct? I've tried various combinations such as:
/// myStruct::a a is an int
/// \var a is an int
But none seem to show up in the generated html. Is this even possible? What would be the correct syntax?