File: processor-point.hpp

package info (click to toggle)
osm2pgsql 0.96.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,304 kB
  • sloc: cpp: 11,462; python: 543; sh: 98; makefile: 17
file content (15 lines) | stat: -rw-r--r-- 372 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef PROCESSOR_POINT_HPP
#define PROCESSOR_POINT_HPP

#include "geometry-processor.hpp"

class processor_point : public geometry_processor
{
public:
    processor_point(std::shared_ptr<reprojection> const &proj);

    wkb_t process_node(osmium::Location const &loc,
                       geom::osmium_builder_t *builder) override;
};

#endif /* PROCESSOR_POINT_HPP */