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

Class XMLDim

pdal/XMLSchema.hpp:64–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

62class XMLSchema;
63
64struct XMLDim
65{
66 friend class XMLSchema;
67
68public:
69 XMLDim() : m_min(0.0), m_max(0.0)
70 {}
71 XMLDim(const DimType& dim, const std::string& name) :
72 m_name(name), m_min(0.0), m_max(0.0), m_dimType(dim)
73 {}
74
75 std::string m_name;
76 std::string m_description;
77 uint32_t m_position;
78 double m_min;
79 double m_max;
80 DimType m_dimType;
81};
82typedef std::vector<XMLDim> XMLDimList;
83inline bool operator < (const XMLDim& d1, const XMLDim& d2)
84 { return d1.m_position < d2.m_position; }

Callers 2

preparedMethod · 0.85
XMLSchemaMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected