| 501 | } |
| 502 | |
| 503 | bool LoaderDriver::load(PointRef& point, const char *buf, int bufsize) |
| 504 | { |
| 505 | for (PointLoaderPtr& l : m_loaders) |
| 506 | l->load(point, buf, bufsize); |
| 507 | return true; |
| 508 | } |
| 509 | |
| 510 | bool LoaderDriver::pack(const PointRef& point, char *buf, int bufsize) |
| 511 | { |
nothing calls this directly
no test coverage detected