mirror of
https://github.com/Indy970/QtHPConnect
synced 2024-12-26 21:59:23 +01:00
23 lines
277 B
C
23 lines
277 B
C
|
#ifndef HPTOOLBOX_H
|
||
|
#define HPTOOLBOX_H
|
||
|
|
||
|
#include <QToolBox>
|
||
|
|
||
|
namespace Ui {
|
||
|
class hpToolBox;
|
||
|
}
|
||
|
|
||
|
class hpToolBox : public QToolBox
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit hpToolBox(QWidget *parent = 0);
|
||
|
~hpToolBox();
|
||
|
|
||
|
private:
|
||
|
Ui::hpToolBox *ui;
|
||
|
};
|
||
|
|
||
|
#endif // HPTOOLBOX_H
|