1 /*
2   Copyright 2008 Intel Corporation
3 
4   Use, modification and distribution are subject to the Boost Software License,
5   Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6   http://www.boost.org/LICENSE_1_0.txt).
7 */
8 #ifndef BOOST_POLYGON_GTL_HPP
9 #define BOOST_POLYGON_GTL_HPP
10 
11 #ifdef __ICC
12 #pragma warning (push)
13 #pragma warning (disable:1125)
14 #endif
15 
16 #ifdef WIN32
17 #pragma warning (push)
18 #pragma warning( disable: 4996 )
19 #pragma warning( disable: 4800 )
20 #endif
21 
22 #define BOOST_POLYGON_NO_DEPS
23 #include "polygon.hpp"
24 namespace gtl = boost::polygon;
25 using namespace boost::polygon::operators;
26 
27 #ifdef WIN32
28 #pragma warning (pop)
29 #endif
30 
31 #ifdef __ICC
32 #pragma warning (pop)
33 #endif
34 
35 #endif
36