mirror of
https://github.com/AxioDL/amuse.git
synced 2025-10-05 09:29:44 +00:00
15 lines
259 B
C++
15 lines
259 B
C++
#ifndef AMUSE_STATUSBAR_WIDGET_HPP
|
|
#define AMUSE_STATUSBAR_WIDGET_HPP
|
|
|
|
#include <QStatusBar>
|
|
|
|
class StatusBarWidget : public QStatusBar
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit StatusBarWidget(QWidget* parent = Q_NULLPTR);
|
|
};
|
|
|
|
|
|
#endif //AMUSE_STATUSBAR_WIDGET_HPP
|