gtl.hpp 592 B

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