mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-01-24 04:44:31 +08:00
31 lines
472 B
C++
31 lines
472 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef SERVER_H
|
|
#define SERVER_H
|
|
|
|
#include <QDialog>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QLabel;
|
|
class QPushButton;
|
|
class QLocalServer;
|
|
QT_END_NAMESPACE
|
|
|
|
class Server : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Server(QWidget *parent = nullptr);
|
|
|
|
private slots:
|
|
void sendFortune();
|
|
|
|
private:
|
|
QLocalServer *server;
|
|
QStringList fortunes;
|
|
};
|
|
|
|
#endif
|