Avionics classes for Transponder, ADF, changed namespace to 2ndlevel

This commit is contained in:
Klaus Basan
2013-04-09 02:00:38 +02:00
parent eb102372f1
commit 9a87731944
42 changed files with 2110 additions and 399 deletions

View File

@@ -1,20 +1,28 @@
/* 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 PQlength_H
#define PQlength_H
#include "blackmisc/pqphysicalquantity.h"
namespace BlackMisc {
namespace BlackMisc
{
namespace PhysicalQuantities
{
/*!
* \brief Physical unit length (length)
* \author KWB
*/
class CLength : public CPhysicalQuantity<CLengthUnit,CLength>
class CLength : public CPhysicalQuantity<CLengthUnit, CLength>
{
public:
/*!
* \brief Default constructor
*/
CLength() : CPhysicalQuantity (0, CLengthUnit::m(), CLengthUnit::m()) {}
CLength() : CPhysicalQuantity(0, CLengthUnit::m(), CLengthUnit::m()) {}
/**
*\brief Copy constructor
*/
@@ -37,4 +45,5 @@ public:
virtual ~CLength() {}
};
} // namespace
} // namespace
#endif // PQlength_H