aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixBootstrapperApplicationTuple.cs
blob: 3d7876fd647cc829abebc88098d889e728499a9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.

namespace WixToolset.Data
{
    using WixToolset.Data.Symbols;

    public static partial class SymbolDefinitions
    {
        public static readonly IntermediateSymbolDefinition WixBootstrapperApplication = new IntermediateSymbolDefinition(
            SymbolDefinitionType.WixBootstrapperApplication,
            new IntermediateFieldDefinition[]
            {
            },
            typeof(WixBootstrapperApplicationSymbol));
    }
}

namespace WixToolset.Data.Symbols
{
    public enum WixBootstrapperApplicationSymbolFields
    {
    }

    public class WixBootstrapperApplicationSymbol : IntermediateSymbol
    {
        public WixBootstrapperApplicationSymbol() : base(SymbolDefinitions.WixBootstrapperApplication, null, null)
        {
        }

        public WixBootstrapperApplicationSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(SymbolDefinitions.WixBootstrapperApplication, sourceLineNumber, id)
        {
        }

        public IntermediateField this[WixBootstrapperApplicationSymbolFields index] => this.Fields[(int)index];
    }
}