MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / getBinderExtensions

Method getBinderExtensions

src/main/database.cpp:193–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

191}
192
193std::vector<extension::BinderExtension*> Database::getBinderExtensions() {
194 std::vector<extension::BinderExtension*> binders;
195 for (auto& binderExtension : binderExtensions) {
196 binders.push_back(binderExtension.get());
197 }
198 return binders;
199}
200
201void Database::addPlannerExtension(std::unique_ptr<extension::PlannerExtension> plannerExtension) {
202 plannerExtensions.push_back(std::move(plannerExtension));

Callers 1

prepareNoLockMethod · 0.80

Calls 2

push_backMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected