/* QueueViewModel.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 Preview View Model /// public class QueueViewModel : ViewModelBase { public QueueViewModel(IServiceLocator locator) : base(locator) { } } }