| 71 | |
| 72 | template <typename T> |
| 73 | class DefaultHandlerFactory : public HandlerFactory { |
| 74 | public: |
| 75 | DefaultHandlerFactory() {} |
| 76 | virtual ~DefaultHandlerFactory() {} |
| 77 | |
| 78 | Handler *New() { |
| 79 | return new T(); |
| 80 | } |
| 81 | }; |
| 82 | |
| 83 | |
| 84 | template <typename F> |
nothing calls this directly
no outgoing calls
no test coverage detected