MCPcopy Create free account
hub / github.com/Kistler-Group/sdbus-cpp / createPseudoConnection

Function createPseudoConnection

src/Message.cpp:931–940  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

929#endif
930
931std::unique_ptr<internal::IConnection, void(*)(internal::IConnection*)> createPseudoConnection()
932{
933 auto deleter = [](internal::IConnection* con)
934 {
935 delete con; // NOLINT(cppcoreguidelines-owning-memory)
936 pseudoConnectionDestroyed = true;
937 };
938
939 return {internal::createPseudoConnection().release(), std::move(deleter)};
940}
941
942internal::IConnection& getPseudoConnectionInstance()
943{

Callers 1

Message.cppFile · 0.70

Calls 1

releaseMethod · 0.80

Tested by

no test coverage detected