| 73 | std::ostream& operator<<(std::ostream& out, PcdDataStorage& storage); |
| 74 | |
| 75 | struct 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 | }; |
| 95 | typedef std::vector<PcdField> PcdFieldList; |
| 96 | |
| 97 | struct PcdHeader |
no outgoing calls
no test coverage detected