jsonserializer_p.h 506 B

123456789101112131415161718192021
  1. #ifndef QTJSONSERIALIZER_JSONSERIALIZER_P_H
  2. #define QTJSONSERIALIZER_JSONSERIALIZER_P_H
  3. #include "jsonserializer.h"
  4. #include "serializerbase_p.h"
  5. namespace QtJsonSerializer {
  6. class Q_JSONSERIALIZER_EXPORT JsonSerializerPrivate : public SerializerBasePrivate
  7. {
  8. Q_DECLARE_PUBLIC(JsonSerializer)
  9. public:
  10. using ByteArrayFormat = JsonSerializer::ByteArrayFormat;
  11. ByteArrayFormat byteArrayFormat = ByteArrayFormat::Base64;
  12. bool validateBase64 = true;
  13. };
  14. }
  15. #endif // QTJSONSERIALIZER_JSONSERIALIZER_P_H