File indexing completed on 2024-05-05 16:27:55

0001 /* SPDX-FileCopyrightText: 2003-2010 Jesper K. Pedersen <blackie@kde.org>
0002 
0003    SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef BREADCRUMBLIST_H
0007 #define BREADCRUMBLIST_H
0008 #include "Breadcrumb.h"
0009 
0010 #include <QList>
0011 
0012 namespace Browser
0013 {
0014 
0015 /**
0016  * \brief A List of \ref Breadcrumb's
0017  *
0018  * See \ref Browser for a detailed description of how this fits in with the rest of the classes in this module
0019  */
0020 class BreadcrumbList : public QList<Breadcrumb>
0021 {
0022 public:
0023     BreadcrumbList latest() const;
0024     QString toString() const;
0025 };
0026 
0027 }
0028 
0029 #endif /* BREADCRUMBLIST_H */
0030 
0031 // vi:expandtab:tabstop=4 shiftwidth=4: