mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
14 lines
156 B
C++
14 lines
156 B
C++
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include <QObject>
|
|
#include <KMainWindow>
|
|
|
|
class Window : public KMainWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Window();
|
|
};
|
|
|
|
#endif
|