Boost C++ 库

...世界上最受推崇、设计精湛的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu, C++ Coding Standards

函数模板 save - Boost C++ 函数库
PrevUpHomeNext

函数模板 save

boost::serialization::save — 使用序列化库保存 first_day_of_the_week_in_month 对象的函数。

提要

// In header: <boost/date_time/gregorian/greg_serialize.hpp>


template<typename Archive> 
  void save(Archive & ar, const gregorian::first_kday_of_month & fkd, 
            unsigned int);

描述

first_day_of_the_week_in_month 对象被分解为 2 部分进行序列化:星期几,以及月份。


PrevUpHomeNext