Files
pilotclient/tests/simpluginfsxp3d/testsimpluginfsxp3d.h
2024-11-11 15:11:40 +01:00

37 lines
827 B
C++

// SPDX-FileCopyrightText: Copyright (C) 2018 swift Project Community / Contributors
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
#ifndef SWIFT_SIMPLUGINFSXP3D_TESTFSXP3DCOMMON_H
#define SWIFT_SIMPLUGINFSXP3D_TESTFSXP3DCOMMON_H
//! \cond PRIVATE_TESTS
//! \file
//! \ingroup testsimplugin
#include "test.h"
#include <QObject>
namespace SwiftSimPluginFsxP3D
{
//! FSX/P3D common tests
class CSimPluginFsxP3d : public QObject
{
Q_OBJECT
public:
//! Standard test case constructor
explicit CSimPluginFsxP3d(QObject *parent = nullptr) : QObject(parent) {}
private slots:
//! Resolve SimConnect Symbols
void resolveSymbols();
//! Request IDs
void requestIds();
};
} // namespace
//! \endcond
#endif // guard