NebulaGraph CPP Client  release-3.4
Constants.h
1 /* Copyright (c) 2021 vesoft inc. All rights reserved.
2  *
3  * This source code is licensed under Apache 2.0 License.
4  */
5 
6 #pragma once
7 
8 namespace nebula {
9 namespace time {
10 
11 static constexpr int kDayOfLeapYear = 366;
12 static constexpr int kDayOfCommonYear = 365;
13 
14 static constexpr int64_t kSecondsOfMinute = 60;
15 static constexpr int64_t kSecondsOfHour = 60 * kSecondsOfMinute;
16 static constexpr int64_t kSecondsOfDay = 24 * kSecondsOfHour;
17 
18 } // namespace time
19 } // namespace nebula