EscapedString.h 313 B

1234567891011121314151617181920
  1. /*
  2. * Arduino JSON library
  3. * Benoit Blanchon 2014 - MIT License
  4. */
  5. #pragma once
  6. #include "../Arduino/Print.h"
  7. namespace ArduinoJson
  8. {
  9. namespace Internals
  10. {
  11. class EscapedString
  12. {
  13. public:
  14. static size_t printTo(const char*, Print*);
  15. };
  16. }
  17. }