-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchrono.hpp
46 lines (41 loc) · 1.41 KB
/
chrono.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// SPDX-License-Identifier: BSL-1.0
#ifndef TETL_CHRONO_HPP
#define TETL_CHRONO_HPP
/// \defgroup chrono chrono
/// C++ time utilities
/// \ingroup utilities-library
/// \example chrono.cpp
/// \code{.cpp}
/// #include <etl/chrono.hpp>
/// \endcode
#include <etl/_config/all.hpp>
#include <etl/_chrono/abs.hpp>
#include <etl/_chrono/ceil.hpp>
#include <etl/_chrono/day.hpp>
#include <etl/_chrono/duration.hpp>
#include <etl/_chrono/duration_cast.hpp>
#include <etl/_chrono/duration_values.hpp>
#include <etl/_chrono/floor.hpp>
#include <etl/_chrono/is_clock.hpp>
#include <etl/_chrono/last_spec.hpp>
#include <etl/_chrono/local_t.hpp>
#include <etl/_chrono/month.hpp>
#include <etl/_chrono/month_day.hpp>
#include <etl/_chrono/month_day_last.hpp>
#include <etl/_chrono/month_weekday.hpp>
#include <etl/_chrono/month_weekday_last.hpp>
#include <etl/_chrono/round.hpp>
#include <etl/_chrono/system_clock.hpp>
#include <etl/_chrono/time_point.hpp>
#include <etl/_chrono/time_point_cast.hpp>
#include <etl/_chrono/treat_as_floating_point.hpp>
#include <etl/_chrono/weekday.hpp>
#include <etl/_chrono/weekday_indexed.hpp>
#include <etl/_chrono/weekday_last.hpp>
#include <etl/_chrono/year.hpp>
#include <etl/_chrono/year_month.hpp>
#include <etl/_chrono/year_month_day.hpp>
#include <etl/_chrono/year_month_day_last.hpp>
#include <etl/_chrono/year_month_weekday.hpp>
#include <etl/_chrono/year_month_weekday_last.hpp>
#endif // TETL_CHRONO_HPP