bar.cpp 297 B

1234567891011121314151617
  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 "sub/bar.h"
  4. #include <stdio.h>
  5. Bar::Bar()
  6. : QObject()
  7. {
  8. }
  9. void Bar::doBar()
  10. {
  11. printf("Hello bar !\n");
  12. }
  13. #include "sub/moc_bar.cpp"