DefaultInstanceFactory

Instantiates a component using it's constructor with no arguments.

@safe
class DefaultInstanceFactory : InstanceFactory!T(
T
) if (
hasDefaultCtor!T
) {}

Members

Functions

factory
T factory()

Create a new instance of object of type T.

Mixins

__anonymous
mixin AllocatorAwareMixin!(typeof(this))
Undocumented in source.
__anonymous
mixin LocatorAwareMixin!(typeof(this))
Undocumented in source.

Meta