Reputation: 339
I'm trying to document C# code which has some enum definitions with doxygen (ver 1.8.0). For some reason it does document the enum but not the member of the enum.
Here is my code:
/// \file Test1.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
///document for namespace
namespace testTheDoxygen
{
/// <summary>
/// Document for class
/// </summary>
public class Test1
{
/// <summary>
/// Documentation for enum
/// </summary>
public enum ThisIsEnum
{
/// <summary>
/// Document for member 1
/// </summary>
member1,
/// <summary>
/// Document for member 2
/// </summary>
member2
}
}
}
Upvotes: 0
Views: 1773
Reputation: 339
Solution for this was to update doxygen. My sample code is working with version 1.8.2.
Upvotes: 1