yaf_p.h 364 B

12345678910111213141516171819
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef YAF_P_H
  4. #define YAF_P_H
  5. #include <QObject>
  6. #include <stdio.h>
  7. class YafP : public QObject
  8. {
  9. Q_OBJECT
  10. public:
  11. YafP() {}
  12. public slots:
  13. void doYafP() { printf("I am yet another file !\n"); }
  14. };
  15. #endif