mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
24 lines
570 B
C++
24 lines
570 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2015 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
//! \file
|
|
//! \ingroup samplemiscsim
|
|
|
|
#ifndef SWIFT_SAMPLE_SAMPLESVPILOTRULES_H
|
|
#define SWIFT_SAMPLE_SAMPLESVPILOTRULES_H
|
|
|
|
class QTextStream;
|
|
|
|
namespace swift::sample
|
|
{
|
|
//! Samples for vPilot rules
|
|
class CSamplesVPilotRules
|
|
{
|
|
public:
|
|
//! Run the samples
|
|
static void samples(QTextStream &streamOut, const QTextStream &streamIn);
|
|
};
|
|
} // namespace swift::sample
|
|
|
|
#endif
|