using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Chernobyl.Plugin;
using Chernobyl.Dependency;
using System.Diagnostics;
namespace Chernobyl.Threading
{
///
/// The for the Chernobyl.Threading module.
///
public class ThreadingPlugin : IPlugin
{
///
/// Initializes a new instance of the class.
///
/// The instance that gives out services for use
/// by this type and takes services from this type for use by other systems.
public ThreadingPlugin(IServices services)
{
Trace = new TraceSource("Chernobyl.Threading");
}
///
/// A used to output errors, warnings, information,
/// etc., that are specific to Chernobyl.Threading. This
/// will have the name "Chernobyl.Threading".
///
public static TraceSource Trace { get; private set; }
}
}