Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: WNCInterface_M2Xdemo ATT_WNCInterface_Info WNCInterface_HTTP_example Public_IoT_M2X_Cellular_Demo
Fork of M2XStreamClient by
Diff: NullPrint.h
- Revision:
- 5:ea68c8980ad8
- Child:
- 7:e64d9e1a800a
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/NullPrint.h Thu Oct 24 12:22:33 2013 +0000
@@ -0,0 +1,19 @@
+#ifndef NullPrint_h
+#define NullPrint_h
+
+#include "Print.h"
+
+// Null Print class used to calculate length to print
+class NullPrint : public Print {
+public:
+ virtual size_t write(uint8_t b) {
+ return 1;
+ }
+
+ virtual size_t write(const uint8_t* buf, size_t size) {
+ return size;
+ }
+};
+
+#endif /* NullPrint_h */
+
