abc_p.h 359 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 ABC_P_H
  4. #define ABC_P_H
  5. #include <QObject>
  6. #include <stdio.h>
  7. class AbcP : public QObject
  8. {
  9. Q_OBJECT
  10. public:
  11. AbcP() {}
  12. public slots:
  13. void doAbcP() { printf("I am private abc !\n"); }
  14. };
  15. #endif