[mapserver-commits] r12195 - trunk/mapserver/mapcache/src

svn at osgeo.org svn at osgeo.org
Fri Aug 26 07:06:03 EDT 2011


Author: tbonfort
Date: 2011-08-26 04:06:03 -0700 (Fri, 26 Aug 2011)
New Revision: 12195

Added:
   trunk/mapserver/mapcache/src/grid.c
Log:
ddetect trailing chars on service prefix
thomas.bonfort | 2011-01-04 13:57:41 +0100 (Tue, 04 Jan 2011)

Added: trunk/mapserver/mapcache/src/grid.c
===================================================================
--- trunk/mapserver/mapcache/src/grid.c	                        (rev 0)
+++ trunk/mapserver/mapcache/src/grid.c	2011-08-26 11:06:03 UTC (rev 12195)
@@ -0,0 +1,25 @@
+/*
+ *  Copyright 2010 Thomas Bonfort
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+
+#include "geocache.h"
+
+/*
+ * allocate and initialize a new tileset
+ */
+geocache_grid* geocache_grid_create(apr_pool_t *pool) {
+   geocache_grid* grid = (geocache_grid*)apr_pcalloc(pool, sizeof(geocache_grid));
+   return grid;
+}



More information about the mapserver-commits mailing list