Build()

System::Build(Args&&…) function

Build an object with direct ownership.

template<typename T,typename...> Details::ObjectBuilder<T> System::Build(Args &&... args)

Template parameters

ParameterDescription
TType of object to build
ArgsArgument types for object construction

Arguments

ParameterTypeDescription
argsArgs&&…Arguments to forward to object constructor

Return Value

ObjectBuilder configured for direct object construction

Remarks

Object construction must be finished with Get() call

See Also