1 /*
2     This file is part of the Okteta Gui library, made within the KDE community.
3 
4     SPDX-FileCopyrightText: 2003 Friedrich W. H. Kossebau <kossebau@kde.org>
5 
6     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
7 */
8 
9 #ifndef OKTETA_COORDRANGELIST_HPP
10 #define OKTETA_COORDRANGELIST_HPP
11 
12 // lib
13 #include "coordrange.hpp"
14 // Qt
15 #include <QLinkedList>
16 
17 namespace Okteta {
18 
19 /**
20    @author Friedrich W. H.  Kossebau
21  */
22 class CoordRangeList : public QLinkedList<CoordRange>
23 {
24 public:
25     CoordRangeList();
26 
27     ~CoordRangeList();
28 
29 public:
30     void addCoordRange(const CoordRange& coordRange);
31 };
32 
33 }
34 
35 #endif
36