abc.h 295 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. #ifndef ABC_H
  4. #define ABC_H
  5. #include <QObject>
  6. class Abc : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. Abc();
  11. public slots:
  12. void doAbc();
  13. };
  14. #endif