Browse Source

Document CheckFlagEnumsPass class.

pull/742/head
Joao Matos 9 years ago
parent
commit
d5273df4f5
  1. 4
      src/Generator/Passes/CheckFlagEnumsPass.cs

4
src/Generator/Passes/CheckFlagEnumsPass.cs

@ -2,6 +2,10 @@ @@ -2,6 +2,10 @@
namespace CppSharp.Passes
{
/// <summary>
/// Checks for enumerations that should be treated as a collection
/// of flags (and annotated with the .NET [Flags] when generated).
/// </summary>
public class CheckFlagEnumsPass : TranslationUnitPass
{
static bool IsFlagEnum(Enumeration @enum)

Loading…
Cancel
Save