mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
24 lines
513 B
C++
24 lines
513 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2014 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
//! \file
|
|
//! \ingroup sampleblackmiscsim
|
|
|
|
#ifndef BLACKSAMPLE_SAMPLESFSX_H
|
|
#define BLACKSAMPLE_SAMPLESFSX_H
|
|
|
|
class QTextStream;
|
|
|
|
namespace BlackSample
|
|
{
|
|
//! Samples for FSX classes
|
|
class CSamplesFsx
|
|
{
|
|
public:
|
|
//! Run the misc. samples
|
|
static void samplesMisc(QTextStream &streamOut);
|
|
};
|
|
} // namespace
|
|
|
|
#endif
|