-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpy_timestamp.cpp
30 lines (27 loc) · 1012 Bytes
/
py_timestamp.cpp
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
/**
* Copyright © 2022 CZ.NIC, z. s. p. o.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include <pybind11/pybind11.h>
#include <pybind11/operators.h>
#include "timestamp.h"
#include "py_common.h"
namespace py = pybind11;
void init_timestamp(py::module& m)
{
py::class_<CDNS::Timestamp>(m, "Timestamp")
.def(py::init())
.def(py::init<uint64_t, uint64_t>())
.def(py::self < py::self)
.def(py::self <= py::self)
.def("get_time_offset", &CDNS::Timestamp::get_time_offset)
.def("add_time_offset", &CDNS::Timestamp::add_time_offset)
.def("write", &CDNS::Timestamp::write)
.def("read", &CDNS::Timestamp::read)
.def("reset", &CDNS::Timestamp::reset)
.def_readwrite("m_secs", &CDNS::Timestamp::m_secs)
.def_readwrite("m_ticks", &CDNS::Timestamp::m_ticks);
}