| 757 | } |
| 758 | |
| 759 | char *msLayerGetProcessing( layerObj *layer, int proc_index) { |
| 760 | if (proc_index < 0 || proc_index >= layer->numprocessing) { |
| 761 | msSetError(MS_CHILDERR, "Invalid processing index.", "msLayerGetProcessing()"); |
| 762 | return NULL; |
| 763 | } |
| 764 | else { |
| 765 | return layer->processing[proc_index]; |
| 766 | } |
| 767 | } |
| 768 | |
| 769 | char *msLayerGetProcessingKey( layerObj *layer, const char *key ) |
| 770 | { |
no test coverage detected