diff options
Diffstat (limited to 'src/wixext/Tuples/ComPlusInterfaceTuple.cs')
-rw-r--r-- | src/wixext/Tuples/ComPlusInterfaceTuple.cs | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/wixext/Tuples/ComPlusInterfaceTuple.cs b/src/wixext/Tuples/ComPlusInterfaceTuple.cs index 42d41ded..f875b424 100644 --- a/src/wixext/Tuples/ComPlusInterfaceTuple.cs +++ b/src/wixext/Tuples/ComPlusInterfaceTuple.cs | |||
@@ -3,53 +3,53 @@ | |||
3 | namespace WixToolset.ComPlus | 3 | namespace WixToolset.ComPlus |
4 | { | 4 | { |
5 | using WixToolset.Data; | 5 | using WixToolset.Data; |
6 | using WixToolset.ComPlus.Tuples; | 6 | using WixToolset.ComPlus.Symbols; |
7 | 7 | ||
8 | public static partial class ComPlusTupleDefinitions | 8 | public static partial class ComPlusSymbolDefinitions |
9 | { | 9 | { |
10 | public static readonly IntermediateTupleDefinition ComPlusInterface = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition ComPlusInterface = new IntermediateSymbolDefinition( |
11 | ComPlusTupleDefinitionType.ComPlusInterface.ToString(), | 11 | ComPlusSymbolDefinitionType.ComPlusInterface.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(ComPlusInterfaceTupleFields.ComPlusComponentRef), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ComPlusInterfaceSymbolFields.ComPlusComponentRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(ComPlusInterfaceTupleFields.IID), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(ComPlusInterfaceSymbolFields.IID), IntermediateFieldType.String), |
16 | }, | 16 | }, |
17 | typeof(ComPlusInterfaceTuple)); | 17 | typeof(ComPlusInterfaceSymbol)); |
18 | } | 18 | } |
19 | } | 19 | } |
20 | 20 | ||
21 | namespace WixToolset.ComPlus.Tuples | 21 | namespace WixToolset.ComPlus.Symbols |
22 | { | 22 | { |
23 | using WixToolset.Data; | 23 | using WixToolset.Data; |
24 | 24 | ||
25 | public enum ComPlusInterfaceTupleFields | 25 | public enum ComPlusInterfaceSymbolFields |
26 | { | 26 | { |
27 | ComPlusComponentRef, | 27 | ComPlusComponentRef, |
28 | IID, | 28 | IID, |
29 | } | 29 | } |
30 | 30 | ||
31 | public class ComPlusInterfaceTuple : IntermediateTuple | 31 | public class ComPlusInterfaceSymbol : IntermediateSymbol |
32 | { | 32 | { |
33 | public ComPlusInterfaceTuple() : base(ComPlusTupleDefinitions.ComPlusInterface, null, null) | 33 | public ComPlusInterfaceSymbol() : base(ComPlusSymbolDefinitions.ComPlusInterface, null, null) |
34 | { | 34 | { |
35 | } | 35 | } |
36 | 36 | ||
37 | public ComPlusInterfaceTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusTupleDefinitions.ComPlusInterface, sourceLineNumber, id) | 37 | public ComPlusInterfaceSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusSymbolDefinitions.ComPlusInterface, sourceLineNumber, id) |
38 | { | 38 | { |
39 | } | 39 | } |
40 | 40 | ||
41 | public IntermediateField this[ComPlusInterfaceTupleFields index] => this.Fields[(int)index]; | 41 | public IntermediateField this[ComPlusInterfaceSymbolFields index] => this.Fields[(int)index]; |
42 | 42 | ||
43 | public string ComPlusComponentRef | 43 | public string ComPlusComponentRef |
44 | { | 44 | { |
45 | get => this.Fields[(int)ComPlusInterfaceTupleFields.ComPlusComponentRef].AsString(); | 45 | get => this.Fields[(int)ComPlusInterfaceSymbolFields.ComPlusComponentRef].AsString(); |
46 | set => this.Set((int)ComPlusInterfaceTupleFields.ComPlusComponentRef, value); | 46 | set => this.Set((int)ComPlusInterfaceSymbolFields.ComPlusComponentRef, value); |
47 | } | 47 | } |
48 | 48 | ||
49 | public string IID | 49 | public string IID |
50 | { | 50 | { |
51 | get => this.Fields[(int)ComPlusInterfaceTupleFields.IID].AsString(); | 51 | get => this.Fields[(int)ComPlusInterfaceSymbolFields.IID].AsString(); |
52 | set => this.Set((int)ComPlusInterfaceTupleFields.IID, value); | 52 | set => this.Set((int)ComPlusInterfaceSymbolFields.IID, value); |
53 | } | 53 | } |
54 | } | 54 | } |
55 | } \ No newline at end of file | 55 | } \ No newline at end of file |