// 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.
namespace WixToolset
{
using WixToolset.Data;
///
/// Melts a Module Wix document into a ComponentGroup representation.
///
public sealed class MelterCore
{
#if TODO_MELT
///
/// Gets whether the melter core encountered an error while processing.
///
/// Flag if core encountered an error during processing.
public bool EncounteredError
{
get { return Messaging.Instance.EncounteredError; }
}
///
/// Sends a message to the message delegate if there is one.
///
/// Message event arguments.
public void OnMessage(MessageEventArgs e)
{
Messaging.Instance.OnMessage(e);
}
#endif
}
}