| 869 | |
| 870 | // exception raised on error during transform operations |
| 871 | class transform_error : public std::runtime_error |
| 872 | { |
| 873 | public: |
| 874 | transform_error(std::string const& error) |
| 875 | : std::runtime_error(error) |
| 876 | { |
| 877 | } |
| 878 | }; |
| 879 | |
| 880 | class TransformSelector |
| 881 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…