I found that you can get what you want if both a brief and a detailed
description is available for each struct member. The detailed
descriptions are then shown in the file Data Structure Documentation
section.

Curiously, a blank line is also required between each member.

I attach an example

P.

On 02/10/2013 16:02, Matteo Cypriani wrote:
> Hi Paolo,

/**
 * @file teststruct.h
 * @brief Test Doxygen doc for structures
 *
 * Test Struct Project is a test for Doxygen and this is its detailed
 * description.
 */

/// Test structure
/**
 * Detailed description of the test structure.
 */
struct mystruct {
  /// A public variable
  ///
  int i; ///< An int

  /// A public variable
  ///         
  char c; ///< A char
};

Reply via email to