File indexing completed on 2024-05-05 04:33:14

0001 /*
0002     SPDX-FileCopyrightText: 2008-2018 Gilles Caulier <caulier dot gilles at gmail dot com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 // Local includes
0008 
0009 #include "imagecollectionselector.h"
0010 #include "imagecollection.h"
0011 
0012 namespace KIPI
0013 {
0014 
0015 ImageCollectionSelector::ImageCollectionSelector(QWidget* const parent)
0016     : QWidget(parent)
0017 {
0018 }
0019 
0020 ImageCollectionSelector::~ImageCollectionSelector()
0021 {
0022 }
0023 
0024 QList<ImageCollection> ImageCollectionSelector::selectedImageCollections() const
0025 {
0026     return QList<ImageCollection>();
0027 }
0028 
0029 void ImageCollectionSelector::enableVirtualCollections(bool /*flag*/)
0030 {
0031 }
0032 
0033 } // namespace KIPI
0034 
0035 #include "moc_imagecollectionselector.cpp"