aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/ITupleDefinitionCreator.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Data/ITupleDefinitionCreator.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/WixToolset.Data/ITupleDefinitionCreator.cs b/src/WixToolset.Data/ITupleDefinitionCreator.cs
new file mode 100644
index 00000000..63477314
--- /dev/null
+++ b/src/WixToolset.Data/ITupleDefinitionCreator.cs
@@ -0,0 +1,9 @@
1// 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.
2
3namespace WixToolset.Data
4{
5 public interface ITupleDefinitionCreator
6 {
7 bool TryGetTupleDefinitionByName(string name, out IntermediateTupleDefinition tupleDefinition);
8 }
9}