14 lines
238 B
C++
14 lines
238 B
C++
#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();
|
|
}
|