File indexing completed on 2024-09-08 13:16:23
0001 /****************************************************************** 0002 * 0003 * kdbgwin - Helper application for DrKonqi 0004 * 0005 * This file is part of the KDE project 0006 * 0007 * SPDX-FileCopyrightText: 2010 Ilie Halip <lupuroshu@gmail.com> 0008 * 0009 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0010 *****************************************************************/ 0011 0012 #include "outputters.h" 0013 0014 Outputter::Outputter() 0015 : stream(stdout) 0016 { 0017 } 0018 0019 void Outputter::OnDebugLine(const QString &line) 0020 { 0021 stream << line << '\n'; 0022 }