Jim Flynn / M2XStreamClient-JMF

Dependents:   WNCInterface_M2Xdemo ATT_WNCInterface_Info WNCInterface_HTTP_example Public_IoT_M2X_Cellular_Demo

Fork of M2XStreamClient by AT&T M2X Team

Revision:
22:4d895e732765
Parent:
21:6878944d2ce2
Child:
23:f32837239193
--- a/NullPrint.h	Sat Jan 02 02:29:43 2016 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-#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 */