1

implement fixed width printing

This commit is contained in:
churl
2022-04-24 22:27:48 +02:00
parent 832a5cef49
commit d93ee3a49f
4 changed files with 108 additions and 18 deletions

View File

@ -19,15 +19,15 @@
#include "lib/OutStream.h"
class CGA_Stream : public OutStream, public CGA {
private:
CGA_Stream(CGA_Stream &copy); // Verhindere Kopieren
CGA_Stream(CGA_Stream &copy); // Verhindere Kopieren
public:
CGA_Stream () : OutStream(), CGA() { flush(); }
// Methode zur Ausgabe des Pufferinhalts der Basisklasse StringBuffer.
virtual void flush ();
void flush () override;
};
#endif