OtherUnderscoreExtra.hpp 301 B

123456789101112131415161718
  1. #ifndef OtherUnderscoreEXTRA_HPP
  2. #define OtherUnderscoreEXTRA_HPP
  3. #include <QObject>
  4. class OtherUnderscoreExtraPrivate;
  5. class OtherUnderscoreExtra : public QObject
  6. {
  7. Q_OBJECT
  8. public:
  9. OtherUnderscoreExtra();
  10. ~OtherUnderscoreExtra();
  11. private:
  12. OtherUnderscoreExtraPrivate* const d;
  13. };
  14. #endif