1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#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