Browse Source

Ignore non-public fields in the generator.

pull/1/head
triton 12 years ago
parent
commit
285fafa513
  1. 3
      src/Generator/Generators/CLI/CLITextTemplate.cs

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

@ -142,6 +142,9 @@ namespace Cxxi.Generators.CLI @@ -142,6 +142,9 @@ namespace Cxxi.Generators.CLI
{
if (field.Ignore) return true;
if (field.Access != AccessSpecifier.Public)
return true;
return false;
}

Loading…
Cancel
Save