File indexing completed on 2025-01-19 03:50:44

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2009-12-05
0007  * Description : base class for sidebar widgets
0008  *
0009  * SPDX-FileCopyrightText: 2009      by Johannes Wienke <languitar at semipol dot de>
0010  * SPDX-FileCopyrightText: 2010-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0011  *
0012  * SPDX-License-Identifier: GPL-2.0-or-later
0013  *
0014  * ============================================================ */
0015 
0016 #include "sidebarwidget.h"
0017 
0018 namespace Digikam
0019 {
0020 
0021 SidebarWidget::SidebarWidget(QWidget* const parent)
0022     : QWidget          (parent),
0023       StateSavingObject(this)
0024 {
0025 }
0026 
0027 SidebarWidget::~SidebarWidget()
0028 {
0029 }
0030 
0031 } // namespace Digikam
0032 
0033 #include "moc_sidebarwidget.cpp"