MCPcopy Create free account
hub / github.com/MOLAorg/mola / initialize

Method initialize

mola_kernel/src/interfaces/ExecutableBase.cpp:51–60  ·  view source on GitHub ↗

This should be reimplemented to read all the required parameters */

Source from the content-addressed store, hash-verified

49
50/** This should be reimplemented to read all the required parameters */
51void ExecutableBase::initialize(const Yaml& cfg)
52{
53 if (!cfg.empty())
54 {
55 MRPT_LOG_WARN_STREAM(
56 "`initialize()` not reimplemented by derived class. "
57 "Ignoring YAML config block:\n"
58 << cfg);
59 }
60}
61
62void ExecutableBase::setModuleInstanceName(const std::string& s) { module_instance_name = s; }
63std::string ExecutableBase::getModuleInstanceName() const { return module_instance_name; }

Callers

nothing calls this directly

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected