OtherUnderscore.hpp 321 B

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