Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Function template save

save — Function to save posix_time::ptime objects using serialization lib.

Synopsis

// In header: <boost/date_time/posix_time/time_serialize.hpp>


template<typename Archive> 
  void save(Archive & ar, const posix_time::ptime & pt, unsigned int);

Description

ptime objects are broken down into 2 parts for serialization: a date object and a time_duration onject


PrevUpHomeNext