// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the IAdvancedViewModel type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.ViewModels.Interfaces
{
using HandBrake.ApplicationServices.Interop.Model.Encoding;
///
/// The Advanced View Model Interface
///
public interface IAdvancedViewModel : ITabInterface
{
///
/// Set the currently selected encoder.
///
///
/// The Video Encoder.
///
void SetEncoder(VideoEncoder encoder);
///
/// Clear out the settings.
///
void Clear();
}
}