Use less generic names for the guards for the ETL public headers
[synfig.git] / ETL / trunk / 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 __ETL__HANDLE__
27 #define __ETL__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 #ifdef HAVE_LIBPTHREAD
37 #define ETL_LOCK_REFCOUNTS
38 #endif
39 #endif
40
41 #ifdef ETL_LOCK_REFCOUNTS
42 #  include "mutex"
43 #endif
44
45 #include "_handle.h"
46
47 /* === E N D =============================================================== */
48
49 #endif