-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpycdns.cpp
40 lines (36 loc) · 1.01 KB
/
pycdns.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
31
32
33
34
35
36
37
38
39
40
/**
* 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 <boost/optional.hpp>
#include "py_common.h"
namespace py = pybind11;
void init_format_specification(py::module&);
void init_dns(py::module&);
void init_writer(py::module&);
void init_cdns_encoder(py::module&);
void init_cdns_decoder(py::module&);
void init_timestamp(py::module&);
void init_file_preamble(py::module&);
void init_block_table(py::module&);
void init_block(py::module&);
void init_interface(py::module&);
void init_cdns(py::module&);
PYBIND11_MODULE(pycdns, m)
{
init_format_specification(m);
init_dns(m);
init_writer(m);
init_cdns_encoder(m);
init_cdns_decoder(m);
init_timestamp(m);
init_file_preamble(m);
init_block_table(m);
init_block(m);
init_interface(m);
init_cdns(m);
}