sdbusplus:通过InterfacesAdded接口监听对象的创建

sdbusplus:添加ObjectManager interface_风静如云的博客-CSDN博客

介绍了如何添加ObjectManager接口,添加了这个接口的好处是可以通过其

.InterfacesAdded               signal    oa{sa{sv}}             -             -
.InterfacesRemoved          signal    oas                        -             -

监听子对象的创建和移除的signal。

//family.cpp
#include 
#include 
#include 
#include 
#include 
using namespace std;
 
int main()
{
    boost::asio::io_context io;
    auto conn = std::make_shared

你可能感兴趣的:(Linux开发,linux)