PointCloudLibrary/pcl
Ensure no `*.hpp` files are needed to be included by the user, only the `*.h` should be required
开放
#3,245 创建于 2019年7月18日
good first issuekind: todo
仓库指标
- 星标
- (9,023 个星标)
- PR 合并指标
- (平均合并 8天 7小时) (30 天内合并 3 个 PR)
描述
Your Environment
- Operating System and version: Win10
- Compiler:
- PCL Version: 1.9.1
Context
In general, we can find PCL .hpp are included at end of header file
#ifdef PCL_NO_PRECOMPILE
#include <pcl/....hpp>
#endif
But why some .hpp are not. For example: pcl/surface/impl/grid_projection.hpp: it is included in .cpp pcl/outofcore/impl/octree_base.hpp: it need to be included by user self