MCPcopy Create free account
hub / github.com/PlotJuggler/PlotJuggler / recipes

Method recipes

pj_runtime/src/DataProcessorService.cpp:200–208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

198}
199
200std::vector<DataProcessorService::FilterRecipe> DataProcessorService::recipes() const {
201 std::vector<FilterRecipe> out;
202 out.reserve(recipes_.size());
203 for (const auto& [out_tid, recipe] : recipes_) {
204 (void)out_tid;
205 out.push_back(recipe);
206 }
207 return out;
208}
209
210Status DataProcessorService::updateFilter(NodeId node_id, std::shared_ptr<proc::DataProcessor> processor) {
211 if (!processor) {

Callers 3

TESTFunction · 0.80
TESTFunction · 0.80
saveDataProcessorsMethod · 0.80

Calls 2

reserveMethod · 0.80
sizeMethod · 0.45

Tested by 2

TESTFunction · 0.64
TESTFunction · 0.64