/* PreviewViewModel.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace HandBrakeWPF.ViewModels { using Microsoft.Practices.ServiceLocation; /// /// The About View Model /// public class PreviewViewModel : ViewModelBase { public PreviewViewModel(IServiceLocator locator) : base(locator) { } } }