mirror of
https://github.com/Indy970/QtHPConnect
synced 2024-12-25 21:59:15 +01:00
22 lines
277 B
C++
22 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
|