| 25 | |
| 26 | template <typename InfoType, typename KeyType> |
| 27 | bool hasValidKey(InfoType info, KeyType key, double range[2]) |
| 28 | { |
| 29 | if (info->Has(key)) |
| 30 | { |
| 31 | info->Get(key, range); |
| 32 | return true; |
| 33 | } |
| 34 | return false; |
| 35 | } |
| 36 | |
| 37 | template <typename InfoType, typename KeyType, typename ComponentKeyType> |
| 38 | bool hasValidKey(InfoType info, KeyType key, ComponentKeyType ckey, double range[2], int comp) |
no test coverage detected