blub.h 259 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. #ifndef BLUB_H
  4. #define BLUB_H
  5. #include <QObject>
  6. class Blub
  7. {
  8. public:
  9. Blub();
  10. void blubber();
  11. };
  12. #endif