| 6509 | } |
| 6510 | |
| 6511 | void writeBootstrapProfile(ThriftBinaryBufferWriter& w, const BootstrapProfile& s) { |
| 6512 | w.writeStructBegin("BootstrapProfile"); |
| 6513 | w.writeFieldBegin("name", ThriftFieldType::T_STRING, 1); |
| 6514 | w.writeString(s.name); |
| 6515 | w.writeFieldEnd(); |
| 6516 | w.writeFieldBegin("settings", ThriftFieldType::T_STRUCT, 2); |
| 6517 | writeBootstrapSettings(w, s.settings); |
| 6518 | w.writeFieldEnd(); |
| 6519 | w.writeFieldStop(); |
| 6520 | w.writeStructEnd(); |
| 6521 | } |
| 6522 | |
| 6523 | void readBootstrapProfile(ThriftBinaryBufferReader& r, BootstrapProfile& s) { |
| 6524 | QString fname; |
no test coverage detected