1 /** ===========================================================
2  * @file
3  *
4  * This file is a part of KDE project
5  *
6  *
7  * @date   2008-02-26
8  * @brief  template widget to upload items in collection
9  *
10  * @author Copyright (C) 2008-2018 by Gilles Caulier
11  *         <a href="mailto:caulier dot gilles at gmail dot com">caulier dot gilles at gmail dot com</a>
12  *
13  * This program is free software; you can redistribute it
14  * and/or modify it under the terms of the GNU General
15  * Public License as published by the Free Software Foundation;
16  * either version 2, or (at your option)
17  * any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22  * GNU General Public License for more details.
23  *
24  * ============================================================ */
25 
26 // Local includes
27 
28 #include "uploadwidget.h"
29 #include "imagecollection.h"
30 
31 namespace KIPI
32 {
33 
34 /*!
35   \class KIPI::UploadWidget
36   This widget is used to specify an upload directory for new images.
37 */
UploadWidget(QWidget * const parent)38 UploadWidget::UploadWidget(QWidget* const parent)
39     : QWidget(parent)
40 {
41 }
42 
~UploadWidget()43 UploadWidget::~UploadWidget()
44 {
45 }
46 
selectedImageCollection() const47 ImageCollection UploadWidget::selectedImageCollection() const
48 {
49     return ImageCollection();
50 }
51 
52 } // namespace KIPI
53