You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
550 B
C++
31 lines
550 B
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#if !defined(Q_MOC_RUN)
|
|
#include <QToolBar>
|
|
#endif
|
|
|
|
namespace ShaderManagementConsole
|
|
{
|
|
class ModelComboBox;
|
|
class LightingPresetComboBox;
|
|
|
|
class ShaderManagementConsoleToolBar
|
|
: public QToolBar
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
|
|
ShaderManagementConsoleToolBar(QWidget* parent = 0);
|
|
~ShaderManagementConsoleToolBar();
|
|
|
|
private:
|
|
};
|
|
} // namespace ShaderManagementConsole
|