| 34 | // - none |
| 35 | |
| 36 | osvr::unique_ptr<GraphOutputInterface> |
| 37 | GraphOutputInterface::createGraphOutputInterface(std::ostream &os, |
| 38 | std::string const &type) { |
| 39 | static GraphOutputFactory factory{}; |
| 40 | static GraphFactoryRegistration<DOTGraphOutput> dot{factory, "dot"}; |
| 41 | return factory.create(os, type); |
| 42 | } |
| 43 | GraphOutputInterface::~GraphOutputInterface() {} |