Template HelpDecoratingContainer

Templated help decorating container.

template HelpDecoratingContainer(T) ;

Templated help decorating container. This decorated will decorate a container, and add help information logic to it. Depending if help information is on or off, it will display or not help information on stdout for end user. This decorated will inherit following interfaces only and only if the T also implements them:

  • Storage!(ObjectFactory, string)
  • Container
  • AliasAware!string
  • FactoryLocator!ObjectFactory

Following interface is a must for decorated container:

  • Locator!()
  • ,

Contained Classes

NameDescription
HelpDecoratingContainerTemplated help decorating container.

Contained Aliases

NameDescription
InheritanceSetSet which the switchable decorated will decorate for T. By default Locator!() and Switchable is included.

Parameters

NameDescription
T The decorated that switchable decorated will decorate.