| 9 | namespace { |
| 10 | |
| 11 | Valdi::BytesView bytesFromString(const char* value) { |
| 12 | return Valdi::BytesView(nullptr, reinterpret_cast<const Valdi::Byte*>(value), strlen(value)); |
| 13 | } |
| 14 | |
| 15 | class TrackingBitmapFactory : public Valdi::IBitmapFactory { |
| 16 | public: |