mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
23 lines
263 B
C++
23 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
|