MCPcopy Create free account
hub / github.com/OpenAssetIO/OpenAssetIO / make

Method make

src/openassetio-ui/src/ui/hostApi/UIDelegateState.cpp:21–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19namespace ui::hostApi {
20
21UIDelegateState::Ptr UIDelegateState::make(
22 managerApi::UIDelegateStateInterfacePtr uiDelegateStateInterface) {
23 return std::make_shared<UIDelegateState>(UIDelegateState{std::move(uiDelegateStateInterface)});
24}
25
26UIDelegateState::UIDelegateState(managerApi::UIDelegateStateInterfacePtr uiDelegateStateInterface)
27 : uiDelegateStateInterface_{std::move(uiDelegateStateInterface)} {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected