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