// 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.Core { using WixToolset.Core.Extensibility; /// /// The WiX Toolset Harvester application core. /// public class HeatCore : IHeatCore { private Harvester harvester; private Mutator mutator; /// /// Instantiates a new HeatCore. /// /// The message handler for the core. public HeatCore() { this.harvester = new Harvester(); this.mutator = new Mutator(); } /// /// Gets the harvester. /// /// The harvester. public Harvester Harvester { get { return this.harvester; } } /// /// Gets the mutator. /// /// The mutator. public Mutator Mutator { get { return this.mutator; } } } }