#region Disclaimer/Info
///////////////////////////////////////////////////////////////////////////////////////////////////
// Subtext WebLog
//
// Subtext is an open source weblog system that is a fork of the .TEXT
// weblog system.
//
// For updated news and information please visit http://subtextproject.com/
// Subtext is hosted at Google Code at http://code.google.com/p/subtext/
// The development mailing list is at subtext@googlegroups.com
//
// This project is licensed under the BSD license. See the License.txt file for more information.
///////////////////////////////////////////////////////////////////////////////////////////////////
#endregion
// This file contains documentation for the various Namespaces within this assembly.
// These classes are only used by NDoc to generate namespace documentation.
// They should all be internal sealed classes with private constructors.
//
// http://ndoc.sourceforge.net/reference/NDoc.Core.Reflection.BaseReflectionDocumenterConfig.UseNamespaceDocSummaries.html
#if DOCUMENTATION
namespace Subtext.Extensibility{
/// <summary>
/// Contains base interface and abstract classes used to extend
/// Subtext.
/// </summary>
internal sealed class NamespaceDoc
{
private NamespaceDoc()
{
}
}
}
namespace Subtext.Extensibility.Providers
{
/// <summary>
/// Contains the base provider definitions for Subtext.
/// </summary>
internal sealed class NamespaceDoc
{
private NamespaceDoc()
{
}
}
}
#endif
|