| 129 | } |
| 130 | |
| 131 | DAV_DECLARE(void) dav_register_liveprop_group(apr_pool_t *p, |
| 132 | const dav_liveprop_group *group) |
| 133 | { |
| 134 | /* register the namespace URIs */ |
| 135 | const char * const * uris = group->namespace_uris; |
| 136 | |
| 137 | for ( ; *uris != NULL; ++uris) { |
| 138 | dav_register_liveprop_namespace(p, *uris); |
| 139 | } |
| 140 | } |
no test coverage detected