Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / ETL / tags / ETL_0_04_10_rc1 / ETL / angle
1 // <angle> -*- C++ -*-
2 /*! ========================================================================
3 ** Extended Template and Library
4 ** Angle Abstraction Class Implementation
5 ** $Id$
6 **
7 ** Copyright (c) 2002 Robert B. Quattlebaum Jr.
8 **
9 ** This package is free software; you can redistribute it and/or
10 ** modify it under the terms of the GNU General Public License as
11 ** published by the Free Software Foundation; either version 2 of
12 ** the License, or (at your option) any later version.
13 **
14 ** This package is distributed in the hope that it will be useful,
15 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 ** General Public License for more details.
18 **
19 ** === N O T E S ===========================================================
20 **
21 ** ========================================================================= */
22
23 /* === S T A R T =========================================================== */
24
25 #ifndef __ANGLE__
26 #define __ANGLE__
27
28 /* === H E A D E R S ======================================================= */
29
30 #include "etl_config.h"
31 #include "_curve_func.h"
32
33 #ifdef ETL_FASTANGLE
34 #include "_fastangle.h"
35 _ETL_BEGIN_NAMESPACE
36 typedef fastangle angle;
37 _ETL_END_NAMESPACE
38 #else
39 # include "_angle.h"
40 #endif
41
42 #ifdef __BEZIER__
43 #include "_bezier_angle.h"
44 #endif
45
46 /* === E N D =============================================================== */
47
48 #endif