File: kmainwindowtest.h

package info (click to toggle)
kf6-kxmlgui 6.23.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 26,692 kB
  • sloc: cpp: 16,698; xml: 45; python: 41; ansic: 22; sh: 18; makefile: 7
file content (22 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
    SPDX-FileCopyrightText: 2002 Simon Hausmann <hausmann@kde.org>

    SPDX-License-Identifier: LGPL-2.0-or-later
*/

#ifndef KMAINWINDOWTEST_H
#define KMAINWINDOWTEST_H

#include <kmainwindow.h>

class MainWindow : public KMainWindow
{
    Q_OBJECT
public:
    MainWindow();

private Q_SLOTS:
    void showMessage();
};

#endif // KMAINWINDOWTEST_H