Jeff Thompson | 86b6d64 | 2013-10-17 15:01:56 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Distributed under the Boost Software License, Version 1.0.(See accompanying |
| 3 | * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) |
| 4 | * |
| 5 | * See http://www.boost.org/libs/iostreams for documentation. |
| 6 | |
| 7 | * File: ndnboost/iostreams/detail/execute.hpp |
| 8 | * Date: Thu Dec 06 13:21:54 MST 2007 |
| 9 | * Copyright: 2007-2008 CodeRage, LLC |
| 10 | * Author: Jonathan Turkanis |
| 11 | * Contact: turkanis at coderage dot com |
| 12 | * |
| 13 | * Defines the preprocessor symbol NDNBOOST_IOSTREAMS_HAS_DINKUMWARE_FPOS for |
| 14 | * platforms that use the implementation of std::fpos from the Dinkumware |
| 15 | * Standard Library. |
| 16 | */ |
| 17 | |
| 18 | #ifndef NDNBOOST_IOSTREAMS_DETAIL_CONFIG_FPOS_HPP_INCLUDED |
| 19 | #define NDNBOOST_IOSTREAMS_DETAIL_CONFIG_FPOS_HPP_INCLUDED |
| 20 | |
| 21 | #if defined(_MSC_VER) && (_MSC_VER >= 1020) |
| 22 | # pragma once |
| 23 | #endif |
| 24 | |
| 25 | # if (defined(_YVALS) || defined(_CPPLIB_VER)) && !defined(__SGI_STL_PORT) && \ |
| 26 | !defined(_STLPORT_VERSION) && !defined(__QNX__) |
| 27 | /**/ |
| 28 | # define NDNBOOST_IOSTREAMS_HAS_DINKUMWARE_FPOS |
| 29 | # endif |
| 30 | |
| 31 | #endif // #ifndef NDNBOOST_IOSTREAMS_DETAIL_CONFIG_FPOS_HPP_INCLUDED |