local_time_types.hpp

来自「CGAL is a collaborative effort of severa」· HPP 代码 · 共 37 行

HPP
37
字号
#ifndef LOCAL_TIME_LOCAL_TIME_TYPES_HPP__#define LOCAL_TIME_LOCAL_TIME_TYPES_HPP__/* Copyright (c) 2003-2004 CrystalClear Software, Inc. * Subject to the Boost Software License, Version 1.0.  * (See accompanying file LICENSE-1.0 or http://www.boost.org/LICENSE-1.0) * Author: Jeff Garland, Bart Garst * $Date: 2004/11/20 10:36:40 $ */#include "boost/date_time/local_time/local_date_time.hpp"#include "boost/date_time/period.hpp"#include "boost/date_time/time_iterator.hpp"namespace boost {namespace local_time {  typedef boost::date_time::period<local_date_time,                                    boost::posix_time::time_duration> local_time_period;  typedef date_time::time_itr<local_date_time> local_time_iterator;  //todo -- add clock definitions in here...    //bring special enum values into the namespace  using date_time::special_values;  using date_time::not_special;  using date_time::neg_infin;  using date_time::pos_infin;  using date_time::not_a_date_time;  using date_time::max_date_time;  using date_time::min_date_time;}} // namespaces#endif // LOCAL_TIME_LOCAL_TIME_TYPES_HPP__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?