1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
/* SPDX-License-Identifier: BSD-2-Clause
*
* This file is part of pyosmium. (https://osmcode.org/pyosmium/)
*
* Copyright (C) 2024 Sarah Hoffmann <lonvia@denofr.de> and others.
* For a full list of authors see the git log.
*/
#ifndef PYOSMIUM_OSMIUM_MODULE_H
#define PYOSMIUM_OSMIUM_MODULE_H
#include <pybind11/pybind11.h>
namespace pyosmium {
void init_merge_input_reader(pybind11::module &m);
void init_simple_writer(pybind11::module &m);
void init_node_location_handler(pybind11::module &m);
void init_osm_file_iterator(pybind11::module &m);
void init_id_tracker(pybind11::module &m);
} // namespace
#endif // PYOSMIUM_OSMIUM_MODULE_H
|