CppSharp.Driver.CreateGeneratorFromKind(GeneratorKind)

Here are the examples of the csharp api class CppSharp.Driver.CreateGeneratorFromKind(GeneratorKind) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: CppSharp
Source File: Driver.cs
public void Setup()
        {
            ValidateOptions();
            ParserOptions.Setup();
            Context = new BindingContext(Options, ParserOptions);
            Context.TypeMaps.SetupTypeMaps(Options.GeneratorKind);
            Generator = CreateGeneratorFromKind(Options.GeneratorKind);
        }