Write out a string of blr as part of a ddl string, as in a view or computed field definition.
| 84 | |
| 85 | // Write out a string of blr as part of a ddl string, as in a view or computed field definition. |
| 86 | void BlrWriter::beginBlr(UCHAR verb) |
| 87 | { |
| 88 | if (verb) |
| 89 | appendUChar(verb); |
| 90 | |
| 91 | baseOffset = blrData.getCount(); |
| 92 | |
| 93 | // put in a place marker for the size of the blr, since it is unknown |
| 94 | appendUShort(0); |
| 95 | appendVersion(); |
| 96 | } |
| 97 | |
| 98 | // Complete the stuffing of a piece of blr by going back and inserting the length. |
| 99 | void BlrWriter::endBlr() |