yaf.cpp 373 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. #include "yaf.h"
  4. #include "yaf_p.h"
  5. #include <stdio.h>
  6. Yaf::Yaf()
  7. {
  8. }
  9. void Yaf::doYaf()
  10. {
  11. YafP yafP;
  12. yafP.doYafP();
  13. }
  14. // check that including a moc file from a private header the wrong way works:
  15. #include "yaf_p.moc"