a_qt.hpp 409 B

123456789101112131415161718192021222324252627
  1. #ifndef A_QT_HPP
  2. #define A_QT_HPP
  3. #include <string>
  4. #include <config_a.hpp>
  5. #include <QObject>
  6. namespace a_qt {
  7. /// @brief A header local QObject based class
  8. class Header_QObject : public QObject
  9. {
  10. Q_OBJECT
  11. public:
  12. Header_QObject() {}
  13. ~Header_QObject() {}
  14. std::string str;
  15. };
  16. /// @brief Function that returns the content of mocs_compilation.cpp
  17. extern std::string mocs_compilation();
  18. }
  19. #endif