| 1072 | **/ |
| 1073 | |
| 1074 | int msLayerSetTimeFilter(layerObj *lp, const char *timestring, |
| 1075 | const char *timefield) |
| 1076 | { |
| 1077 | if ( ! lp->vtable) { |
| 1078 | int rv = msInitializeVirtualTable(lp); |
| 1079 | if (rv != MS_SUCCESS) |
| 1080 | return rv; |
| 1081 | } |
| 1082 | return lp->vtable->LayerSetTimeFilter(lp, timestring, timefield); |
| 1083 | } |
| 1084 | |
| 1085 | int |
| 1086 | msLayerMakeBackticsTimeFilter(layerObj *lp, const char *timestring, |
no test coverage detected