29 lines
851 B
C
29 lines
851 B
C
/*
|
|
This file is part of KDDockWidgets.
|
|
|
|
SPDX-FileCopyrightText: 2020-2022 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
|
|
Author: Renato Araujo Oliveira Filho <renato.araujo@kdab.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only
|
|
|
|
Contact KDAB at <info@kdab.com> for commercial licensing options.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// Make "signals:", "slots:" visible as access specifiers
|
|
#define QT_ANNOTATE_ACCESS_SPECIFIER(a) __attribute__((annotate(#a)))
|
|
|
|
// Define PYTHON_BINDINGS this will be used in some part of c++ to skip problematic parts
|
|
#define PYTHON_BINDINGS
|
|
|
|
#ifndef QT_WIDGETS_LIB
|
|
#define QT_WIDGETS_LIB
|
|
#endif
|
|
|
|
#include <kddockwidgets/MainWindowBase.h>
|
|
#include <kddockwidgets/MainWindow.h>
|
|
#include <kddockwidgets/DockWidgetBase.h>
|
|
#include <kddockwidgets/DockWidget.h>
|
|
#include <kddockwidgets/LayoutSaver.h>
|