Warning: That file was not part of the compilation database. It may have many parsing errors.

1#ifndef MAINWINDOW_H
2#define MAINWINDOW_H
3
4#include <KXmlGuiWindow>
5#include <KTextEdit>
6
7class MainWindow : public KXmlGuiWindow
8{
9 public:
10 MainWindow(QWidget *parent=0);
11
12 private:
13 KTextEdit* textArea;
14 void setupActions();
15};
16
17#endif
18

Warning: That file was not part of the compilation database. It may have many parsing errors.