Browse Source

Check for ignored events before generation.

pull/1/head
triton 13 years ago
parent
commit
af7b578fa5
  1. 3
      src/Generator/Generators/CLI/CLISourcesTemplate.cs

3
src/Generator/Generators/CLI/CLISourcesTemplate.cs

@ -149,6 +149,9 @@ namespace Cxxi.Generators.CLI @@ -149,6 +149,9 @@ namespace Cxxi.Generators.CLI
foreach (var @event in @class.Events)
{
if (@event.Ignore)
continue;
GenerateDeclarationCommon(@event);
GenerateEvent(@event, @class);
}

Loading…
Cancel
Save