00001 /********************************************************************** 00002 * $Id: unload.h 1820 2006-09-06 16:54:23Z mloskot $ 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 00033 #ifndef GEOS_UNLOAD_H 00034 #define GEOS_UNLOAD_H 00035 //xie add for realse static memory 2003,10,06 00036 namespace geos { 00037 namespace io { 00038 00039 class Unload 00040 { 00041 private: 00042 Unload(void) {} 00043 ~Unload(void) {} 00044 public: 00045 static void Release(); 00046 }; 00047 00048 } 00049 } 00050 #endif