swift
rawfsdmessagesdialog.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (C) 2018 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
5 
6 #ifndef SWIFT_GUI_COMPONENTS_RAWFSDMESSAGESDIALOG_H
7 #define SWIFT_GUI_COMPONENTS_RAWFSDMESSAGESDIALOG_H
8 
9 #include <QDialog>
10 #include <QScopedPointer>
11 
13 #include "gui/swiftguiexport.h"
14 
15 namespace Ui
16 {
17  class CRawFsdMessagesDialog;
18 }
19 namespace swift::gui::components
20 {
22  class SWIFT_GUI_EXPORT CRawFsdMessagesDialog : public QDialog
23  {
24  Q_OBJECT
25 
26  public:
28  explicit CRawFsdMessagesDialog(QWidget *parent = nullptr);
29 
31  virtual ~CRawFsdMessagesDialog();
32 
33  private:
34  QScopedPointer<Ui::CRawFsdMessagesDialog> ui;
35  };
36 } // namespace swift::gui::components
37 
38 #endif // SWIFT_GUI_COMPONENTS_RAWFSDMESSAGESDIALOG_H
High level reusable GUI components.
Definition: aboutdialog.cpp:13
#define SWIFT_GUI_EXPORT
Export a class or function from the library.