pcl
PCLVertices.hpp
Go to the documentation of this file.
1 #ifndef PCL_VERTICES_WRAPPER_HPP
2 #define PCL_VERTICES_WRAPPER_HPP
3 
4 #include <vector>
5 #include <stdint.h>
6 
7 namespace wrappers
8 {
9  struct PCLVertices
10  {
11  std::vector<uint32_t> vertices;
12  };
13 }
14 
15 #endif
Definition: PCLVertices.hpp:7
Definition: PCLVertices.hpp:9
std::vector< uint32_t > vertices
Definition: PCLVertices.hpp:11