MCPcopy Create free account
hub / github.com/analogdevicesinc/scopy / start

Method start

gui/src/tutorialbuilder.cpp:73–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71void TutorialBuilder::setTopWidget(QWidget *topWidget) { m_topWidget = topWidget; }
72
73void TutorialBuilder::start()
74{
75 try {
76 this->readTutorialRequirements();
77 uint16_t chaptersCollected = this->collectChapters();
78 qInfo(CAT_TUTORIALBUILDER) << "Chapters collected" << chaptersCollected;
79
80 TutorialOverlay::start();
81 } catch(std::runtime_error &error) {
82 qCritical(CAT_TUTORIALBUILDER) << "Cannot start tutorial:" << error.what();
83 }
84}
85
86uint16_t TutorialBuilder::collectChapters()
87{

Callers

nothing calls this directly

Calls 2

collectChaptersMethod · 0.95

Tested by

no test coverage detected