2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2011-11-23 01:01:13 +04:00
|
|
|
#ifndef YAF_P_H
|
|
|
|
#define YAF_P_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
class YafP : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2016-05-16 17:34:04 +03:00
|
|
|
public:
|
|
|
|
YafP() {}
|
|
|
|
public slots:
|
|
|
|
void doYafP() { printf("I am yet another file !\n"); }
|
2011-11-23 01:01:13 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|