MCPcopy Create free account
hub / github.com/PDAL/PDAL / PcdField

Class PcdField

io/PcdHeader.hpp:75–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73std::ostream& operator<<(std::ostream& out, PcdDataStorage& storage);
74
75struct PcdField
76{
77 PcdField()
78 : m_id(Dimension::Id::Unknown), m_size(4),
79 m_type(PcdFieldType::unknown), m_count(1)
80 {
81 }
82
83 PcdField(std::string& label) : PcdField()
84 {
85 m_id = Dimension::id(label);
86 m_label = label;
87 }
88
89 std::string m_label;
90 Dimension::Id m_id;
91 uint32_t m_size;
92 PcdFieldType m_type;
93 uint32_t m_count;
94};
95typedef std::vector<PcdField> PcdFieldList;
96
97struct PcdHeader

Callers 2

DimSpecMethod · 0.85
PcdHeader.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected