mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 12:55:33 +08:00
17 lines
488 B
C++
17 lines
488 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2013 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
#include "blackmisc/network/clientlist.h"
|
|
|
|
using namespace BlackMisc::Aviation;
|
|
|
|
BLACK_DEFINE_SEQUENCE_MIXINS(BlackMisc::Network, CClient, CClientList)
|
|
|
|
namespace BlackMisc::Network
|
|
{
|
|
CClientList::CClientList() {}
|
|
|
|
CClientList::CClientList(const CSequence &other) : CSequence<CClient>(other)
|
|
{}
|
|
} // namespace
|