mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
24 lines
533 B
C++
24 lines
533 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 samplemiscquantities
|
|
|
|
#ifndef SWIFT_SAMPLE_SAMPLESGEO_H
|
|
#define SWIFT_SAMPLE_SAMPLESGEO_H
|
|
|
|
class QTextStream;
|
|
|
|
namespace swift::sample
|
|
{
|
|
//! Samples for physical quantities
|
|
class CSamplesGeo
|
|
{
|
|
public:
|
|
//! Run the samples
|
|
static int samples(QTextStream &out);
|
|
};
|
|
} // namespace swift::sample
|
|
|
|
#endif // guard
|