mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-25 02:05:43 +08:00
Avionics classes for Transponder, ADF, changed namespace to 2ndlevel
This commit is contained in:
@@ -1,14 +1,22 @@
|
||||
/* Copyright (C) 2013 VATSIM Community
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#ifndef CTEMPERATURE_H
|
||||
#define CTEMPERATURE_H
|
||||
#include "pqphysicalquantity.h"
|
||||
|
||||
namespace BlackMisc {
|
||||
namespace BlackMisc
|
||||
{
|
||||
namespace PhysicalQuantities
|
||||
{
|
||||
|
||||
/*!
|
||||
* \brief Physical unit temperature
|
||||
* \author KWB
|
||||
*/
|
||||
class CTemperature : public CPhysicalQuantity<CTemperatureUnit,CTemperature>
|
||||
class CTemperature : public CPhysicalQuantity<CTemperatureUnit, CTemperature>
|
||||
{
|
||||
public:
|
||||
/*!
|
||||
@@ -18,7 +26,7 @@ public:
|
||||
/**
|
||||
*\brief Copy constructor
|
||||
*/
|
||||
CTemperature(const CTemperature &temperature) : CPhysicalQuantity(temperature){}
|
||||
CTemperature(const CTemperature &temperature) : CPhysicalQuantity(temperature) {}
|
||||
/*!
|
||||
* \brief Init by int value
|
||||
* \param value
|
||||
@@ -37,5 +45,5 @@ public:
|
||||
virtual ~CTemperature() {}
|
||||
};
|
||||
} // namespace
|
||||
|
||||
} // namespace
|
||||
#endif // CTEMPERATURE_H
|
||||
|
||||
Reference in New Issue
Block a user