Release of synfigstudio 0.61.09 version. *****
[synfig.git] / ETL / tags / stable / ETL / handle
1 // <handle> -*- C++ -*-
2 /* === E T L =============================================================== */
3 /*!     \file handle
4 **      $Id$
5 **      \brief Template Object Handle
6 **
7 **      \legal
8 **      Copyright (c) 2002 Robert B. Quattlebaum Jr.
9 **      Copyright (c) 2008 Chris Moore
10 **
11 **      This package is free software; you can redistribute it and/or
12 **      modify it under the terms of the GNU General Public License as
13 **      published by the Free Software Foundation; either version 2 of
14 **      the License, or (at your option) any later version.
15 **
16 **      This package is distributed in the hope that it will be useful,
17 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
18 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 **      General Public License for more details.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === S T A R T =========================================================== */
25
26 #ifndef __HANDLE__
27 #define __HANDLE__
28
29 /* === H E A D E R S ======================================================= */
30
31 #include "etl_config.h"
32
33 // include the next line in an attempt to increase stability
34 // it seems to make things much *less* stable on MS Windows
35 #ifndef _WIN32
36 #define ETL_LOCK_REFCOUNTS
37 #endif
38
39 #ifdef ETL_LOCK_REFCOUNTS
40 #  include "mutex"
41 #endif
42
43 #include "_handle.h"
44
45 /* === E N D =============================================================== */
46
47 #endif