mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
24 lines
545 B
C++
24 lines
545 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 samplemiscsim
|
|
|
|
#ifndef SWIFT_SAMPLE_SAMPLESFSCOMMON_H
|
|
#define SWIFT_SAMPLE_SAMPLESFSCOMMON_H
|
|
|
|
class QTextStream;
|
|
|
|
namespace swift::sample
|
|
{
|
|
//! Samples for FsCommon classes
|
|
class CSamplesFsCommon
|
|
{
|
|
public:
|
|
//! Run the samples
|
|
static void samples(QTextStream &streamOut, QTextStream &streamIn);
|
|
};
|
|
} // namespace
|
|
|
|
#endif
|