refactor: Rename remaining "black" identifiers

This commit is contained in:
Lars Toenning
2024-11-10 21:50:35 +01:00
parent 6d1812b164
commit cc1e41fc59
579 changed files with 1758 additions and 1869 deletions

View File

@@ -0,0 +1,36 @@
// 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