Add IWYU pragmas.

These pragmas are used by the IWYU (Include-What-You-Use) program to find out
which header files need to be included in your C/C++ program. The pragmas
added tell IWYU that osmpbf.h acts as a "facade" for the other header files.
This commit is contained in:
Jochen Topf 2013-11-27 10:07:37 +01:00
parent ee52133e05
commit 0d9ce00257
1 changed files with 2 additions and 2 deletions

View File

@ -2,10 +2,10 @@
#define OSMPBF_H
// this describes the low-level blob storage
#include <osmpbf/fileformat.pb.h>
#include <osmpbf/fileformat.pb.h> // IWYU pragma: export
// this describes the high-level OSM objects
#include <osmpbf/osmformat.pb.h>
#include <osmpbf/osmformat.pb.h> // IWYU pragma: export
#define OSMPBF_VERSION "1.3.0"