00001 /********************************************************************** 00002 * $Id: unload.h 2556 2009-06-06 22:22:28Z strk $ 00003 * 00004 * GEOS - Geometry Engine Open Source 00005 * http://geos.refractions.net 00006 * 00007 * Copyright (C) 2001-2002 Vivid Solutions Inc. 00008 * 00009 * This is free software; you can redistribute and/or modify it under 00010 * the terms of the GNU Lesser General Public Licence as published 00011 * by the Free Software Foundation. 00012 * See the COPYING file for more information. 00013 * 00014 ********************************************************************** 00015 * $Log$ 00016 * Revision 1.3 2006/03/06 19:43:20 strk 00017 * Fixed Unload class definition namespace (geos::io) 00018 * 00019 * Revision 1.2 2006/03/01 10:39:58 strk 00020 * ctor and dtor made private and inlined 00021 * 00022 * Revision 1.1 2004/07/02 13:20:42 strk 00023 * Header files moved under geos/ dir. 00024 * 00025 * Revision 1.2 2003/11/07 01:23:42 pramsey 00026 * Add standard CVS headers licence notices and copyrights to all cpp and h 00027 * files. 00028 * 00029 * 00030 **********************************************************************/ 00031 00032 #include <geos/export.h> 00033 00034 #ifndef GEOS_UNLOAD_H 00035 #define GEOS_UNLOAD_H 00036 //xie add for realse static memory 2003,10,06 00037 namespace geos { 00038 namespace io { 00039 00040 class GEOS_DLL Unload 00041 { 00042 private: 00043 Unload(void) {} 00044 ~Unload(void) {} 00045 public: 00046 static void Release(); 00047 }; 00048 00049 } 00050 } 00051 #endif