| 3 | namespace 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 | } |