summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/ServicesWindsorInstaller.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2015-03-01 18:03:28 +0000
committersr55 <[email protected]>2015-03-01 18:03:28 +0000
commit29c62be71227ae33e382199f323890ae3bfffa69 (patch)
treece95739341715439b97d7ca1b4baebd89474c6c9 /win/CS/HandBrake.ApplicationServices/ServicesWindsorInstaller.cs
parent5cce72f890bc7b6075a55aa4364b8817c22f11c0 (diff)
WinGui: Moving the Queue Code out to the UI level. The services library will be strictly a libhb warpper and service provider.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6959 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/ServicesWindsorInstaller.cs')
-rw-r--r--win/CS/HandBrake.ApplicationServices/ServicesWindsorInstaller.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/ServicesWindsorInstaller.cs b/win/CS/HandBrake.ApplicationServices/ServicesWindsorInstaller.cs
deleted file mode 100644
index 72b32ef7f..000000000
--- a/win/CS/HandBrake.ApplicationServices/ServicesWindsorInstaller.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-// --------------------------------------------------------------------------------------------------------------------
-// <copyright file="ServicesWindsorInstaller.cs" company="HandBrake Project (http://handbrake.fr)">
-// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
-// </copyright>
-// <summary>
-// The Windsor Installer Interface Implementation
-// </summary>
-// --------------------------------------------------------------------------------------------------------------------
-
-namespace HandBrake.ApplicationServices
-{
- using Castle.MicroKernel.Registration;
- using Castle.MicroKernel.SubSystems.Configuration;
- using Castle.Windsor;
-
- using HandBrake.ApplicationServices.Services;
- using HandBrake.ApplicationServices.Services.Interfaces;
-
- /// <summary>
- /// An Implimentation of IWindsorInstaller for this library.
- /// </summary>
- public class ServicesWindsorInstaller : IWindsorInstaller
- {
- #region Implementation of IWindsorInstaller
-
- /// <summary>
- /// Performs the installation in the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
- /// </summary>
- /// <param name="container">The container.</param><param name="store">The configuration store.</param>
- public void Install(IWindsorContainer container, IConfigurationStore store)
- {
- container.Register(Component.For<IQueueProcessor>().ImplementedBy<QueueProcessor>());
- }
-
- #endregion
- }
-}