mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 06:45:37 +08:00
24 lines
526 B
C++
24 lines
526 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
|
|
|
|
//! \file
|
|
//! \ingroup samplemiscsim
|
|
|
|
#ifndef SWIFT_SAMPLE_SAMPLESP3D_H
|
|
#define SWIFT_SAMPLE_SAMPLESP3D_H
|
|
|
|
class QTextStream;
|
|
|
|
namespace swift::sample
|
|
{
|
|
//! Samples for P3D classes
|
|
class CSamplesP3D
|
|
{
|
|
public:
|
|
//! Run the misc. samples
|
|
static void samplesMisc(QTextStream &streamOut);
|
|
};
|
|
} // namespace swift::sample
|
|
|
|
#endif
|