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

Method writeSignalRecordToSdBusVTable

src/Object.cpp:274–281  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

272}
273
274void Object::writeSignalRecordToSdBusVTable(const VTable::SignalItem& signal, std::vector<sd_bus_vtable>& vtable)
275{
276 auto vtableItem = createSdBusVTableSignalItem( signal.name.c_str()
277 , signal.signature.c_str()
278 , signal.paramNames.c_str()
279 , signal.flags.toSdBusSignalFlags() );
280 vtable.push_back(std::move(vtableItem));
281}
282
283void Object::writePropertyRecordToSdBusVTable(const VTable::PropertyItem& property, std::vector<sd_bus_vtable>& vtable)
284{

Callers

nothing calls this directly

Calls 3

toSdBusSignalFlagsMethod · 0.80
push_backMethod · 0.80

Tested by

no test coverage detected