OtherUnderscoreSub.hpp 360 B

12345678910111213141516171819
  1. #ifndef OtherUnderscoreSub_HPP
  2. #define OtherUnderscoreSub_HPP
  3. #include <QObject>
  4. // Sources includes a moc_ includes of an extra object in a subdirectory
  5. class OtherUnderscoreSubPrivate;
  6. class OtherUnderscoreSub : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. OtherUnderscoreSub();
  11. ~OtherUnderscoreSub();
  12. private:
  13. OtherUnderscoreSubPrivate* const d;
  14. };
  15. #endif