2008-10-22 20:45:13 +00:00
|
|
|
|
#region CPL License
|
|
|
|
|
/*
|
|
|
|
|
Nuclex Framework
|
2012-02-29 16:27:43 +00:00
|
|
|
|
Copyright (C) 2002-2012 Nuclex Development Labs
|
2008-10-22 20:45:13 +00:00
|
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the IBM Common Public License as
|
|
|
|
|
published by the IBM Corporation; either version 1.0 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
IBM Common Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the IBM Common Public
|
|
|
|
|
License along with this library
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2008-11-26 19:15:36 +00:00
|
|
|
|
using System.Diagnostics;
|
2008-10-22 20:45:13 +00:00
|
|
|
|
|
|
|
|
|
namespace Nuclex.Support {
|
|
|
|
|
|
|
|
|
|
/// <summary>Manages a globally shared instance of the given Type</summary>
|
|
|
|
|
/// <typeparam name="SharedType">
|
|
|
|
|
/// Type of which a globally shared instance will be provided
|
|
|
|
|
/// </typeparam>
|
|
|
|
|
public static class Shared<SharedType> where SharedType : new() {
|
|
|
|
|
|
|
|
|
|
/// <summary>Returns the global instance of the class</summary>
|
|
|
|
|
public static SharedType Instance {
|
2008-11-26 19:15:36 +00:00
|
|
|
|
[DebuggerStepThrough]
|
2008-10-22 20:45:13 +00:00
|
|
|
|
get {
|
|
|
|
|
return instance;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>Stored the globally shared instance</summary>
|
|
|
|
|
private static readonly SharedType instance = new SharedType();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Nuclex.Support
|