1 /* Copyright (c) 2002-2020 CrystalClear Software, Inc. 2 * Use, modification and distribution is subject to the 3 * Boost Software License, Version 1.0. (See accompanying 4 * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) 5 * Author: Jeff Garland, Bart Garst 6 * $Date$ 7 */ 8 9 10 // define BOOST_DATE_TIME_SOURCE so that <boost/date_time/config.hpp> knows 11 // the library is being built (possibly exporting rather than importing code) 12 #ifndef BOOST_DATE_TIME_SOURCE 13 #define BOOST_DATE_TIME_SOURCE 14 #endif 15 16 #include <boost/date_time/compiler_config.hpp> 17 18 namespace boost { 19 namespace gregorian { 20 21 date_time_dummy_exported_function()22BOOST_DATE_TIME_DECL void date_time_dummy_exported_function() 23 {} 24 25 } } //namespace boost::gregorian 26 27 28 29 30 31 32