| 65 | { |
| 66 | template<> |
| 67 | inline StatusWithReason fromString(const std::string& s, |
| 68 | SrsBounds& srsBounds) |
| 69 | { |
| 70 | std::string::size_type pos(0); |
| 71 | srsBounds.parse(s, pos); |
| 72 | return true; |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | PDAL_EXPORT std::ostream& operator << (std::ostream& out, const SrsBounds& bounds); |