swift
userlist.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 SWIFT_DEFINE_SEQUENCE_MIXINS(swift::misc::network, CUser, CUserList)
7 
8 namespace swift::misc::network
9 {
11 
12  CUserList::CUserList(const CSequence &other) : CSequence<CUser>(other) {}
13 } // namespace swift::misc::network
Generic sequential container with value semantics.
Definition: sequence.h:86
Value object encapsulating information of a user.
Definition: user.h:28
CUserList()
Default constructor.
Definition: userlist.cpp:10
#define SWIFT_DEFINE_SEQUENCE_MIXINS(Namespace, T, List)
Explicit template definition of mixins for a CSequence subclass.
Definition: sequence.h:63