1 #pragma once
2 
3 #include "transform.hpp"
4 #include <string>
5 
6 template <typename IO>
7 std::unique_ptr<Transform<IO>> create_transform(const std::string &desc);
8