File indexing completed on 2024-05-05 17:32:29

0001 // SPDX-FileCopyrightText: 2021 Jonah BrĂ¼chert <jbb@kaidan.im>
0002 //
0003 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0004 
0005 #pragma once
0006 
0007 #include <QVector>
0008 
0009 #include <global.h>
0010 
0011 #include "phonenumber.h"
0012 
0013 class PhoneNumberList : public QVector<PhoneNumber>
0014 {
0015 public:
0016     using QVector<PhoneNumber>::QVector;
0017 
0018     explicit PhoneNumberList(const QString &phoneNumbers);
0019 
0020     QString toString() const;
0021 };
0022 
0023 Q_DECLARE_METATYPE(PhoneNumberList)