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