| 170 | } |
| 171 | |
| 172 | void PDFDictionary::insertTextString(const char key[], const char value[]) { |
| 173 | records.emplace_back(PDFUnion::Name(key), PDFUnion::TextString(value)); |
| 174 | } |
| 175 | |
| 176 | void PDFDictionary::insertByteString(const char key[], std::string value) { |
| 177 | records.emplace_back(PDFUnion::Name(key), PDFUnion::ByteString(std::move(value))); |
no outgoing calls
no test coverage detected