// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the IVideoViewModel type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.ViewModels.Interfaces
{
///
/// The Video View Model Interface
///
public interface IVideoViewModel : ITabInterface
{
///
/// Trigger a Notify Property Changed on the Task to force various UI elements to update.
///
void RefreshTask();
///
/// Clear the advanced x264 options.
///
void ClearAdvancedSettings();
}
}