xyz.cpp 267 B

123456789101112131415
  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 "xyz.h"
  4. #include <stdio.h>
  5. Xyz::Xyz()
  6. : QObject()
  7. {
  8. }
  9. void Xyz::doXyz()
  10. {
  11. printf("This is xyz !\n");
  12. }