1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-04 03:40:14 +00:00
OpenMW/apps/opencs/view/world/scenetoolbar.hpp
2013-09-28 11:06:56 +02:00

27 lines
376 B
C++

#ifndef CSV_WORLD_SCENETOOLBAR_H
#define CSV_WORLD_SCENETOOLBAR_H
#include <QWidget>
class QVBoxLayout;
namespace CSVWorld
{
class SceneTool;
class SceneToolbar : public QWidget
{
Q_OBJECT
QVBoxLayout *mLayout;
public:
SceneToolbar (QWidget *parent);
void addTool (SceneTool *tool);
};
}
#endif