Warning, file /education/step/step/worldbrowser.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*.
0002     SPDX-FileCopyrightText: 2007 Vladimir Kuznetsov <ks.vladimir@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef STEP_WORLDBROWSER_H
0008 #define STEP_WORLDBROWSER_H
0009 
0010 #include <QDockWidget>
0011 
0012 class WorldModel;
0013 class WorldBrowserView;
0014 
0015 class WorldBrowser: public QDockWidget
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020     explicit WorldBrowser(WorldModel* worldModel, QWidget* parent = nullptr);
0021 
0022 protected:
0023     WorldBrowserView* _worldBrowserView;
0024 };
0025 
0026 #endif
0027