/* This file is part of KDDockWidgets. SPDX-FileCopyrightText: 2020 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Sérgio Martins SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only Contact KDAB at for commercial licensing options. */ #include "TabBarViewInterface.h" #include "kddockwidgets/core/TabBar.h" namespace KDDockWidgets::Core { TabBarViewInterface::TabBarViewInterface(TabBar *controller) : m_tabBar(controller) { } TabBarViewInterface::~TabBarViewInterface() = default; void TabBarViewInterface::setTabsAreMovable(bool) { // Not implemented by default } } // namespace