mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 13:36:48 +08:00
Use nested namespaces (C++17 feature)
This commit is contained in:
@@ -8,20 +8,17 @@
|
||||
|
||||
#include "interpolationsetuplist.h"
|
||||
|
||||
namespace BlackMisc
|
||||
namespace BlackMisc::Simulation
|
||||
{
|
||||
namespace Simulation
|
||||
CInterpolationSetupList::CInterpolationSetupList() { }
|
||||
|
||||
CInterpolationSetupList::CInterpolationSetupList(const CInterpolationAndRenderingSetupPerCallsign &setup)
|
||||
{
|
||||
CInterpolationSetupList::CInterpolationSetupList() { }
|
||||
this->push_back(setup);
|
||||
}
|
||||
|
||||
CInterpolationSetupList::CInterpolationSetupList(const CInterpolationAndRenderingSetupPerCallsign &setup)
|
||||
{
|
||||
this->push_back(setup);
|
||||
}
|
||||
CInterpolationSetupList::CInterpolationSetupList(const CSequence<CInterpolationAndRenderingSetupPerCallsign> &other) :
|
||||
CSequence<CInterpolationAndRenderingSetupPerCallsign>(other)
|
||||
{ }
|
||||
|
||||
CInterpolationSetupList::CInterpolationSetupList(const CSequence<CInterpolationAndRenderingSetupPerCallsign> &other) :
|
||||
CSequence<CInterpolationAndRenderingSetupPerCallsign>(other)
|
||||
{ }
|
||||
|
||||
} // namespace
|
||||
} // namespace
|
||||
|
||||
Reference in New Issue
Block a user