18 lines
295 B
18 lines
295 B
8 years ago
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||
13 years ago
|
#ifndef ABC_H
|
||
|
#define ABC_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class Abc : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
9 years ago
|
public:
|
||
|
Abc();
|
||
|
public slots:
|
||
|
void doAbc();
|
||
13 years ago
|
};
|
||
|
|
||
|
#endif
|