forked from osm2pgsql-dev/osm2pgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTODO
More file actions
18 lines (11 loc) · 617 Bytes
/
TODO
File metadata and controls
18 lines (11 loc) · 617 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
== osm2pgsql ==
* there is still room for code cleanups
** the postgres specific files also contain some general functions
that could/should be moved out to separate files so that they
may be shared by other middle and output backends in the future
* in the long run it may make sense to go for C++ all the way
** the C++ interface to Google ProtoBuffers is much more mature than
its C counterpart
** inheriting input, middle, and output plugin implementations from
abstract C++ base clases would provide a cleaner and more readable
interface than the current C99 struct based implementation IMHO