summaryrefslogtreecommitdiff
path: root/boost/date_time/posix_time/ptime.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/date_time/posix_time/ptime.hpp')
-rw-r--r--boost/date_time/posix_time/ptime.hpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/boost/date_time/posix_time/ptime.hpp b/boost/date_time/posix_time/ptime.hpp
index e4f9d02d1f..c97edf9cfb 100644
--- a/boost/date_time/posix_time/ptime.hpp
+++ b/boost/date_time/posix_time/ptime.hpp
@@ -9,8 +9,9 @@
* $Date$
*/
-#include "boost/date_time/posix_time/posix_time_system.hpp"
-#include "boost/date_time/time.hpp"
+#include <boost/date_time/posix_time/posix_time_system.hpp>
+#include <boost/date_time/time.hpp>
+#include <boost/date_time/compiler_config.hpp>
namespace boost {
@@ -24,11 +25,11 @@ namespace posix_time {
using date_time::not_a_date_time;
using date_time::max_date_time;
using date_time::min_date_time;
-
+
//! Time type with no timezone or other adjustments
/*! \ingroup time_basics
*/
- class ptime : public date_time::base_time<ptime, posix_time_system>
+ class BOOST_SYMBOL_VISIBLE ptime : public date_time::base_time<ptime, posix_time_system>
{
public:
typedef posix_time_system time_system_type;
@@ -53,7 +54,7 @@ namespace posix_time {
ptime() : date_time::base_time<time_type,time_system_type>(gregorian::date(not_a_date_time), time_duration_type(not_a_date_time))
{}
#endif // DATE_TIME_NO_DEFAULT_CONSTRUCTOR
-
+
};