| 712 | } |
| 713 | |
| 714 | static Stat GetStat(const std::string &stat) |
| 715 | { |
| 716 | for (Stat s = CENTER_X; s < INVALID; s = static_cast<Stat>(s + 1)) |
| 717 | { |
| 718 | if (stat == GetString(s)) |
| 719 | return s; |
| 720 | } |
| 721 | return INVALID; |
| 722 | } |
| 723 | |
| 724 | static OGRFieldType GetFieldType(Stat stat) |
| 725 | { |
no test coverage detected