diff options
Diffstat (limited to 'src/WixToolset.Core/Extensibility/IHeatCore.cs')
-rw-r--r-- | src/WixToolset.Core/Extensibility/IHeatCore.cs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/WixToolset.Core/Extensibility/IHeatCore.cs b/src/WixToolset.Core/Extensibility/IHeatCore.cs new file mode 100644 index 00000000..bc853b24 --- /dev/null +++ b/src/WixToolset.Core/Extensibility/IHeatCore.cs | |||
@@ -0,0 +1,36 @@ | |||
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 | |||
3 | namespace WixToolset.Extensibilty | ||
4 | { | ||
5 | using WixToolset.Data; | ||
6 | |||
7 | /// <summary> | ||
8 | /// The WiX Toolset Harvester application core. | ||
9 | /// </summary> | ||
10 | public interface IHeatCore | ||
11 | { | ||
12 | /// <summary> | ||
13 | /// Gets whether the mutator core encountered an error while processing. | ||
14 | /// </summary> | ||
15 | /// <value>Flag if core encountered an error during processing.</value> | ||
16 | bool EncounteredError { get; } | ||
17 | |||
18 | /// <summary> | ||
19 | /// Gets the harvester. | ||
20 | /// </summary> | ||
21 | /// <value>The harvester.</value> | ||
22 | Harvester Harvester { get; } | ||
23 | |||
24 | /// <summary> | ||
25 | /// Gets the mutator. | ||
26 | /// </summary> | ||
27 | /// <value>The mutator.</value> | ||
28 | Mutator Mutator { get; } | ||
29 | |||
30 | /// <summary> | ||
31 | /// Sends a message to the message delegate if there is one. | ||
32 | /// </summary> | ||
33 | /// <param name="mea">Message event arguments.</param> | ||
34 | void OnMessage(MessageEventArgs mea); | ||
35 | } | ||
36 | } | ||