16 lines
267 B
C
16 lines
267 B
C
|
|
#ifndef ELASTATUSBAR_H
|
||
|
|
#define ELASTATUSBAR_H
|
||
|
|
|
||
|
|
#include <QStatusBar>
|
||
|
|
|
||
|
|
#include "stdafx.h"
|
||
|
|
class ELA_EXPORT ElaStatusBar : public QStatusBar
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
explicit ElaStatusBar(QWidget* parent = nullptr);
|
||
|
|
~ElaStatusBar();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // ELASTATUSBAR_H
|