File: dialogexample.h

package info (click to toggle)
kf6-sonnet 6.20.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,096 kB
  • sloc: cpp: 7,586; sh: 14; makefile: 7
file content (26 lines) | stat: -rw-r--r-- 402 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * test_dialog.h
 *
 * SPDX-FileCopyrightText: 2004 Zack Rusin <zack@kde.org>
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */
#ifndef TEST_DIALOG_H
#define TEST_DIALOG_H

#include "dialog.h"

#include <QObject>

class TestDialog : public QObject
{
    Q_OBJECT
public:
    TestDialog();

public Q_SLOTS:
    void check(const QString &buffer);
    void doneChecking(const QString &);
};

#endif