// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the ISummaryViewModel type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.ViewModels.Interfaces
{
using System;
using HandBrakeWPF.EventArgs;
using HandBrakeWPF.Services.Encode.Model.Models;
public interface ISummaryViewModel : ITabInterface
{
event EventHandler OutputFormatChanged;
void SetContainer(OutputFormat container);
void UpdateDisplayedInfo();
void PreviousPreview();
void NextPreview();
}
}