#include "drukbox.h" Drukbox::Drukbox(QTextBrowser *a): browser(a){ } void Drukbox::toonText(std::string s){ browser->append(QString::fromStdString(s)); browser->update(); } void Drukbox::clearMedium(){ browser->clear(); }