Files
pilotclient/src/blackgui/components/rawfsdmessagesdialog.h
Roland Winklmeier 7c903001d5 Raw FSD message component and dialog
Maniphest Tasks: T222
2018-01-29 12:17:24 +01:00

45 lines
1.2 KiB
C++

/* Copyright (C) 2018
* swift project Community / Contributors
*
* This file is part of swift Project. It is subject to the license terms in the LICENSE file found in the top-level
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
* including this file, may be copied, modified, propagated, or distributed except according to the terms
* contained in the LICENSE file.
*/
//! \file
#ifndef BLACKGUI_COMPONENTS_RAWFSDMESSAGESDIALOG_H
#define BLACKGUI_COMPONENTS_RAWFSDMESSAGESDIALOG_H
#include "blackgui/blackguiexport.h"
#include "blackgui/components/rawfsdmessagescomponent.h"
#include <QDialog>
#include <QScopedPointer>
namespace Ui { class CRawFsdMessagesDialog; }
namespace BlackGui
{
namespace Components
{
//! CRawFsdMessageComponent as dialog
class BLACKGUI_EXPORT CRawFsdMessagesDialog : public QDialog
{
Q_OBJECT
public:
//! Constructor
explicit CRawFsdMessagesDialog(QWidget *parent = nullptr);
//! Destructor
virtual ~CRawFsdMessagesDialog();
private:
QScopedPointer<Ui::CRawFsdMessagesDialog> ui;
};
} // ns
} // ns
#endif // guard