MCPcopy Create free account
hub / github.com/Palm1r/QodeAssist / skillsManager

Method skillsManager

ChatView/ChatRootView.cpp:364–374  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

362}
363
364Skills::SkillsManager *ChatRootView::skillsManager() const
365{
366 if (!m_skillsManagerResolved) {
367 m_skillsManagerResolved = true;
368 if (auto context = qmlContext(this)) {
369 m_skillsManager = qobject_cast<Skills::SkillsManager *>(
370 context->contextProperty("skillsManager").value<QObject *>());
371 }
372 }
373 return m_skillsManager;
374}
375
376QVariantList ChatRootView::searchSkills(const QString &query) const
377{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected