swift
clientlist.cpp
1 // SPDX-FileCopyrightText: Copyright (C) 2013 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
5 
6 using namespace swift::misc::aviation;
7 
8 SWIFT_DEFINE_SEQUENCE_MIXINS(swift::misc::network, CClient, CClientList)
9 
10 namespace swift::misc::network
11 {
12  CClientList::CClientList() {}
13 
14  CClientList::CClientList(const CSequence &other) : CSequence<CClient>(other) {}
15 } // namespace swift::misc::network
Generic sequential container with value semantics.
Definition: sequence.h:86
Another client software.
Definition: client.h:27
#define SWIFT_DEFINE_SEQUENCE_MIXINS(Namespace, T, List)
Explicit template definition of mixins for a CSequence subclass.
Definition: sequence.h:63