JsonParserGeneratorRK
spark_wiring_printable.h
Go to the documentation of this file.
1 
27 #ifndef __SPARK_WIRING_PRINTABLE_H
28 #define __SPARK_WIRING_PRINTABLE_H
29 
30 #include <stddef.h>
31 
32 class Print;
33 
41 class Printable
42 {
43  public:
49  virtual size_t printTo(Print& p) const = 0;
50 };
51 
52 #endif
53 
The Printable class provides a way for new classes to allow themselves to be printed.
Definition: spark_wiring_printable.h:41
Class for printing to a stream or file.
Definition: spark_wiring_print.h:50
virtual size_t printTo(Print &p) const =0
Print a textual representation of the class to a Print object.