GEOS  3.3.3
unload.h
1 /**********************************************************************
2  * $Id: unload.h 2556 2009-06-06 22:22:28Z strk $
3  *
4  * GEOS - Geometry Engine Open Source
5  * http://geos.refractions.net
6  *
7  * Copyright (C) 2001-2002 Vivid Solutions Inc.
8  *
9  * This is free software; you can redistribute and/or modify it under
10  * the terms of the GNU Lesser General Public Licence as published
11  * by the Free Software Foundation.
12  * See the COPYING file for more information.
13  *
14  **********************************************************************
15  * $Log$
16  * Revision 1.3 2006/03/06 19:43:20 strk
17  * Fixed Unload class definition namespace (geos::io)
18  *
19  * Revision 1.2 2006/03/01 10:39:58 strk
20  * ctor and dtor made private and inlined
21  *
22  * Revision 1.1 2004/07/02 13:20:42 strk
23  * Header files moved under geos/ dir.
24  *
25  * Revision 1.2 2003/11/07 01:23:42 pramsey
26  * Add standard CVS headers licence notices and copyrights to all cpp and h
27  * files.
28  *
29  *
30  **********************************************************************/
31 
32 #include <geos/export.h>
33 
34 #ifndef GEOS_UNLOAD_H
35 #define GEOS_UNLOAD_H
36 //xie add for realse static memory 2003,10,06
37 namespace geos {
38 namespace io {
39 
40 class GEOS_DLL Unload
41 {
42 private:
43  Unload(void) {}
44  ~Unload(void) {}
45 public:
46  static void Release();
47 };
48 
49 }
50 }
51 #endif