File: osmium_module.h

package info (click to toggle)
pyosmium 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,600 kB
  • sloc: python: 4,493; cpp: 2,616; makefile: 21
file content (23 lines) | stat: -rw-r--r-- 649 bytes parent folder | download | duplicates (6)
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