Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
stdinlistener_win.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
3
4#ifndef STDINLISTENER_WIN_H
5#define STDINLISTENER_WIN_H
6
7#include <windows.h>
8#include <QtCore/QThread>
9
10QT_BEGIN_NAMESPACE
11
12class StdInListener : public QThread
13{
14 Q_OBJECT
15
16public:
17 StdInListener(QObject *parent);
18 ~StdInListener();
19
20signals:
21 void receivedCommand(const QString &cmd);
22
23private:
24 void run() override;
25 bool ok;
26};
27
28QT_END_NAMESPACE
29
30#endif
QObject * parent
Definition qobject.h:73
\inmodule QtCore
Definition qobject.h:103
Combined button and popup list for selecting options.
#define TRACE_OBJ
Definition tracer.h:34