Setter for content.
| 191 | |
| 192 | /// Setter for content. |
| 193 | void setArrayType(FieldType &&FT) noexcept { |
| 194 | Type = TypeCode::Array; |
| 195 | FType = std::vector<FieldType>{std::move(FT)}; |
| 196 | } |
| 197 | void setStructType(std::vector<FieldType> &&VFT) noexcept { |
| 198 | Type = TypeCode::Struct; |
| 199 | FType = std::move(VFT); |
no outgoing calls