mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
24 lines
263 B
C
24 lines
263 B
C
![]() |
#ifndef DIALOGTEST_H
|
||
|
#define DIALOGTEST_H
|
||
|
|
||
|
#include <QCheckBox>
|
||
|
|
||
|
#include <KApplication>
|
||
|
|
||
|
|
||
|
class App : public KApplication
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
App();
|
||
|
};
|
||
|
|
||
|
class DialogTest : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
DialogTest();
|
||
|
};
|
||
|
|
||
|
#endif
|