mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
26 lines
440 B
C++
26 lines
440 B
C++
#ifndef SAMPLESPHYSICALQUANTITIES_H
|
|
#define SAMPLESPHYSICALQUANTITIES_H
|
|
|
|
#include <QDebug>
|
|
#include "blackmisc/pqconstants.h"
|
|
#include "blackmisc/debug.h"
|
|
|
|
using namespace BlackMisc::PhysicalQuantities;
|
|
|
|
namespace BlackMiscTest {
|
|
|
|
/*!
|
|
* \brief Samples for physical quantities
|
|
*/
|
|
class CSamplesPhysicalQuantities
|
|
{
|
|
public:
|
|
/*!
|
|
* \brief Run the samples
|
|
*/
|
|
static int samples();
|
|
};
|
|
}
|
|
|
|
#endif // SAMPLESPHYSICALQUANTITIES_H
|