mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
24 lines
308 B
C
24 lines
308 B
C
![]() |
#ifndef KHBOXTEST_H
|
||
|
#define KHBOXTEST_H
|
||
|
|
||
|
#include "khbox.h"
|
||
|
class QPushButton;
|
||
|
|
||
|
class KHBoxTest : public KHBox {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
KHBoxTest( QWidget* parentWidget );
|
||
|
|
||
|
public Q_SLOTS:
|
||
|
void slotAdd();
|
||
|
void slotRemove();
|
||
|
|
||
|
private:
|
||
|
QPushButton* pbAdd;
|
||
|
QPushButton* pbRemove;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|