aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/MelterCore.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/MelterCore.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/MelterCore.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/MelterCore.cs b/src/WixToolset.Core.WindowsInstaller/MelterCore.cs
new file mode 100644
index 00000000..75d43619
--- /dev/null
+++ b/src/WixToolset.Core.WindowsInstaller/MelterCore.cs
@@ -0,0 +1,30 @@
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
4{
5 using WixToolset.Data;
6
7 /// <summary>
8 /// Melts a Module Wix document into a ComponentGroup representation.
9 /// </summary>
10 public sealed class MelterCore : IMessageHandler
11 {
12 /// <summary>
13 /// Gets whether the melter core encountered an error while processing.
14 /// </summary>
15 /// <value>Flag if core encountered an error during processing.</value>
16 public bool EncounteredError
17 {
18 get { return Messaging.Instance.EncounteredError; }
19 }
20
21 /// <summary>
22 /// Sends a message to the message delegate if there is one.
23 /// </summary>
24 /// <param name="mea">Message event arguments.</param>
25 public void OnMessage(MessageEventArgs e)
26 {
27 Messaging.Instance.OnMessage(e);
28 }
29 }
30}