00001 /********************************************************************** 00002 * $Id: unload.h,v 1.1 2004/07/02 13:20:42 strk Exp $ 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: unload.h,v $ 00016 * Revision 1.1 2004/07/02 13:20:42 strk 00017 * Header files moved under geos/ dir. 00018 * 00019 * Revision 1.2 2003/11/07 01:23:42 pramsey 00020 * Add standard CVS headers licence notices and copyrights to all cpp and h 00021 * files. 00022 * 00023 * 00024 **********************************************************************/ 00025 00026 00027 #ifndef GEOS_UNLOAD_H 00028 #define GEOS_UNLOAD_H 00029 //xie add for realse static memory 2003,10,06 00030 namespace geos { 00031 00032 class Unload 00033 { 00034 public: 00035 Unload(void); 00036 ~Unload(void); 00037 static void Release(); 00038 }; 00039 00040 } 00041 #endif