MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / getConfigTemplates

Function getConfigTemplates

src/Core/Config/Templates/Config.cpp:5–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3namespace obe::Config::Templates
4{
5 vili::parser::state getConfigTemplates()
6 {
7 vili::parser::state state;
8 // Debug templates
9 state.push_template("trace", 0);
10 state.push_template("debug", 1);
11 state.push_template("info", 2);
12 state.push_template("warning", 3);
13 state.push_template("error", 4);
14 state.push_template("critical", 5);
15 state.push_template("none", 6);
16
17 // Window templates
18 state.push_template("fill", "fill");
19 return state;
20 }
21}

Callers 1

loadMethod · 0.85

Calls 1

push_templateMethod · 0.80

Tested by

no test coverage detected