| 62 | template <class ExtMsgType> |
| 63 | struct Factory { |
| 64 | static ExtMsg* create(ExtMsgHeader* header, const uint8_t* body) { |
| 65 | return (ExtMsg*)(new ExtMsgType(header, body)); |
| 66 | } |
| 67 | }; |
| 68 | }; |
| 69 |
nothing calls this directly
no outgoing calls
no test coverage detected