MCPcopy Create free account
hub / github.com/BehaviorTree/Groot / loadJsonFile

Method loadJsonFile

QtNodeEditor/src/FlowViewStyle.cpp:71–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69}
70
71void
72FlowViewStyle::
73loadJsonFile(QString styleFile)
74{
75 QFile file(styleFile);
76
77 if (!file.open(QIODevice::ReadOnly))
78 {
79 qWarning() << "Couldn't open file " << styleFile;
80
81 return;
82 }
83
84 loadJsonFromByteArray(file.readAll());
85}
86
87
88void

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected