IsolatedEthernet
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
32class Print;
33
42{
43 public:
49 virtual size_t printTo(Print& p) const = 0;
50};
51
52#endif
53
Class for printing to a stream or file.
Definition: spark_wiring_print.h:51
The Printable class provides a way for new classes to allow themselves to be printed.
Definition: spark_wiring_printable.h:42
virtual size_t printTo(Print &p) const =0
Print a textual representation of the class to a Print object.