Support for MSP430 launchpad.

Fork of mbed by mbed official

Revision:
85:024bf7f99721
Parent:
65:5798e58a58b1
--- a/Stream.h	Mon May 19 18:14:09 2014 +0100
+++ b/Stream.h	Wed Jun 11 15:14:05 2014 +0100
@@ -49,6 +49,11 @@
     virtual int _getc() = 0;
 
     std::FILE *_file;
+
+    /* disallow copy constructor and assignment operators */
+private:
+    Stream(const Stream&);
+    Stream & operator = (const Stream&);
 };
 
 } // namespace mbed