diff options
Diffstat (limited to 'include/msp430fr5969lp/driver/stdout.h')
-rw-r--r-- | include/msp430fr5969lp/driver/stdout.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/include/msp430fr5969lp/driver/stdout.h b/include/msp430fr5969lp/driver/stdout.h deleted file mode 100644 index 2eb669d..0000000 --- a/include/msp430fr5969lp/driver/stdout.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef STANDARDOUTPUT_H -#define STANDARDOUTPUT_H - -#include "object/outputstream.h" - -class StandardOutput : public OutputStream { - private: - StandardOutput(const StandardOutput ©); - - public: - StandardOutput () {} - void setup(); - - virtual void put(char c) override; -}; - -extern StandardOutput kout; - -#endif |