blob: 1a4a8689df449030aaf3db961400a27d54aa6a63 [file]
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#ifndef XYZ_H
#define XYZ_H
#include <QObject>
class Xyz : public QObject
{
Q_OBJECT
public:
Xyz();
public slots:
void doXyz();
};
#endif