2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2012-02-09 16:04:43 +00:00
|
|
|
|
|
|
|
#include "commandlistener.h"
|
|
|
|
#include "constants.h"
|
|
|
|
#include <QtCore/QTextStream>
|
|
|
|
|
2015-05-21 13:39:28 +00:00
|
|
|
void CommandListener::readCommand()
|
2012-02-09 16:04:43 +00:00
|
|
|
{
|
2015-05-21 13:39:28 +00:00
|
|
|
emit command(QTextStream(stdin).readLine());
|
2012-02-09 16:04:43 +00:00
|
|
|
}
|
2017-04-25 21:08:46 +00:00
|
|
|
|
|
|
|
#include "moc_commandlistener.cpp"
|