diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/CCPSearchTuple.cs | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/WixToolset.Data/Tuples/CCPSearchTuple.cs b/src/WixToolset.Data/Tuples/CCPSearchTuple.cs index 63720d64..6f6227fd 100644 --- a/src/WixToolset.Data/Tuples/CCPSearchTuple.cs +++ b/src/WixToolset.Data/Tuples/CCPSearchTuple.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 CCPSearch = new IntermediateTupleDefinition( | 9 | public static readonly IntermediateSymbolDefinition CCPSearch = new IntermediateSymbolDefinition( |
10 | TupleDefinitionType.CCPSearch, | 10 | SymbolDefinitionType.CCPSearch, |
11 | new IntermediateFieldDefinition[] | 11 | new IntermediateFieldDefinition[] |
12 | { | 12 | { |
13 | }, | 13 | }, |
14 | typeof(CCPSearchTuple)); | 14 | typeof(CCPSearchSymbol)); |
15 | } | 15 | } |
16 | } | 16 | } |
17 | 17 | ||
18 | namespace WixToolset.Data.Tuples | 18 | namespace WixToolset.Data.Symbols |
19 | { | 19 | { |
20 | public enum CCPSearchTupleFields | 20 | public enum CCPSearchSymbolFields |
21 | { | 21 | { |
22 | } | 22 | } |
23 | 23 | ||
24 | public class CCPSearchTuple : IntermediateTuple | 24 | public class CCPSearchSymbol : IntermediateSymbol |
25 | { | 25 | { |
26 | public CCPSearchTuple() : base(TupleDefinitions.CCPSearch, null, null) | 26 | public CCPSearchSymbol() : base(SymbolDefinitions.CCPSearch, null, null) |
27 | { | 27 | { |
28 | } | 28 | } |
29 | 29 | ||
30 | public CCPSearchTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(TupleDefinitions.CCPSearch, sourceLineNumber, id) | 30 | public CCPSearchSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(SymbolDefinitions.CCPSearch, sourceLineNumber, id) |
31 | { | 31 | { |
32 | } | 32 | } |
33 | 33 | ||
34 | public IntermediateField this[CCPSearchTupleFields index] => this.Fields[(int)index]; | 34 | public IntermediateField this[CCPSearchSymbolFields index] => this.Fields[(int)index]; |
35 | } | 35 | } |
36 | } \ No newline at end of file | 36 | } \ No newline at end of file |