diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs b/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs index d786b8d9..07302df8 100644 --- a/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs +++ b/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs | |||
| @@ -2,35 +2,35 @@ | |||
| 2 | 2 | ||
| 3 | namespace WixToolset.Data | 3 | namespace WixToolset.Data |
| 4 | { | 4 | { |
| 5 | using WixToolset.Data.Tuples; | 5 | using WixToolset.Data.Symbols; |
| 6 | 6 | ||
| 7 | public static partial class TupleDefinitions | 7 | public static partial class SymbolDefinitions |
| 8 | { | 8 | { |
| 9 | public static readonly IntermediateTupleDefinition ModuleIgnoreTable = new IntermediateTupleDefinition( | 9 | public static readonly IntermediateSymbolDefinition ModuleIgnoreTable = new IntermediateSymbolDefinition( |
| 10 | TupleDefinitionType.ModuleIgnoreTable, | 10 | SymbolDefinitionType.ModuleIgnoreTable, |
| 11 | new IntermediateFieldDefinition[] | 11 | new IntermediateFieldDefinition[] |
| 12 | { | 12 | { |
| 13 | }, | 13 | }, |
| 14 | typeof(ModuleIgnoreTableTuple)); | 14 | typeof(ModuleIgnoreTableSymbol)); |
| 15 | } | 15 | } |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | namespace WixToolset.Data.Tuples | 18 | namespace WixToolset.Data.Symbols |
| 19 | { | 19 | { |
| 20 | public enum ModuleIgnoreTableTupleFields | 20 | public enum ModuleIgnoreTableSymbolFields |
| 21 | { | 21 | { |
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | public class ModuleIgnoreTableTuple : IntermediateTuple | 24 | public class ModuleIgnoreTableSymbol : IntermediateSymbol |
| 25 | { | 25 | { |
| 26 | public ModuleIgnoreTableTuple() : base(TupleDefinitions.ModuleIgnoreTable, null, null) | 26 | public ModuleIgnoreTableSymbol() : base(SymbolDefinitions.ModuleIgnoreTable, null, null) |
| 27 | { | 27 | { |
| 28 | } | 28 | } |
| 29 | 29 | ||
| 30 | public ModuleIgnoreTableTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(TupleDefinitions.ModuleIgnoreTable, sourceLineNumber, id) | 30 | public ModuleIgnoreTableSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(SymbolDefinitions.ModuleIgnoreTable, sourceLineNumber, id) |
| 31 | { | 31 | { |
| 32 | } | 32 | } |
| 33 | 33 | ||
| 34 | public IntermediateField this[ModuleIgnoreTableTupleFields index] => this.Fields[(int)index]; | 34 | public IntermediateField this[ModuleIgnoreTableSymbolFields index] => this.Fields[(int)index]; |
| 35 | } | 35 | } |
| 36 | } \ No newline at end of file | 36 | } \ No newline at end of file |
