| 141 | } |
| 142 | |
| 143 | bool EELParser::hasDefaultsDefined() |
| 144 | { |
| 145 | if (!isFileLoaded()) |
| 146 | { |
| 147 | return false; |
| 148 | } |
| 149 | |
| 150 | for(const auto& prop : std::as_const(properties)) |
| 151 | { |
| 152 | if(prop->hasDefault()) |
| 153 | { |
| 154 | return true; |
| 155 | } |
| 156 | } |
| 157 | return false; |
| 158 | } |
| 159 | |
| 160 | bool EELParser::canLoadDefaults() |
| 161 | { |
no test coverage detected