MCPcopy Create free account
hub / github.com/MapServer/MapServer / msWFSCreateParamsObj

Function msWFSCreateParamsObj

mapwfs.c:2955–2964  ·  view source on GitHub ↗

/ msWFSCreateParamsObj */ / Create a parameter object, initialize it. */ The caller should free the object using msWFSFreeParamsObj. */ /

Source from the content-addressed store, hash-verified

2953/* The caller should free the object using msWFSFreeParamsObj. */
2954/************************************************************************/
2955wfsParamsObj *msWFSCreateParamsObj()
2956{
2957 wfsParamsObj *paramsObj = (wfsParamsObj *)calloc(1, sizeof(wfsParamsObj));
2958 MS_CHECK_ALLOC(paramsObj, sizeof(wfsParamsObj), NULL);
2959
2960 paramsObj->nMaxFeatures = -1;
2961 paramsObj->nStartIndex = -1;
2962
2963 return paramsObj;
2964}
2965
2966
2967

Callers 2

msWFSDispatchFunction · 0.85
msBuildRequestParamsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected