/* WindsorInstaller.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 HandBrake.Framework { using Castle.MicroKernel; using Castle.Windsor; using HandBrake.Framework.Services; using HandBrake.Framework.Services.Interfaces; /// /// This is the Windsor Installer class. /// public class WindsorInstaller : IWindsorInstaller { /// /// Setup the Services for this Library /// /// /// The container. /// /// /// The store. /// public void Install(IWindsorContainer container, IConfigurationStore store) { container.AddComponent(); container.AddComponent(); } } }