// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// The AdvancedEncoderOptionsCommand interface.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Commands.Interfaces
{
///
/// The AdvancedEncoderOptionsCommand interface.
///
public interface IAdvancedEncoderOptionsCommand
{
///
/// Clear out the advanced options
///
void ExecuteClearAdvanced();
///
/// Clear the advanced encoder options out on the video tab.
///
void ExecuteClearVideo();
}
}