document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include "process.h"
  2.  
  3. Process::Process():out(stdout)
  4. {
  5.  
  6. }
  7.   void Process::say(QString txt){
  8.     out << txt << endl;//harus pakai endl atau flush
  9. }
');