aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/strlist.h
blob: 01865a5b4d5f3f3a29c0e1ef5cd89d6c79e1ebfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef STRLIST_H
#define STRLIST_H

#include "libsamplemacros.h"
#include "str.h"

#include <list>

class LIBSAMPLE_API StrList : public std::list<Str>
{
public:
    enum CtorEnum {
        NoParamsCtor,
        StrCtor,
        CopyCtor,
        ListOfStrCtor
    };

    inline StrList() = default;
    inline StrList(const std::list<Str> &lst) :
        std::list<Str>(lst), m_ctorUsed(ListOfStrCtor) {}
    inline explicit StrList(const Str &str) :
        m_ctorUsed(StrCtor) { push_back(str); }
    inline StrList(const StrList &lst) :
        std::list<Str>(lst), m_ctorUsed(CopyCtor) {}

    StrList(StrList &&) = default;
    StrList &operator=(const StrList &) = default;
    StrList &operator=(StrList &&) = default;
    ~StrList() = default;

    inline void append(const Str &str) { push_back(str); }
    Str join(const Str &sep) const;

    bool operator==(const std::list<Str> &other) const;
    inline bool operator!=(const std::list<Str> &other) const { return !(*this == other); }

    CtorEnum constructorUsed() const { return m_ctorUsed; }

private:
    CtorEnum m_ctorUsed = NoParamsCtor;
};

using PStrList = StrList;

#endif // STRLIST_H