OtherUnderscoreExtra_p.hpp 241 B

1234567891011121314
  1. #ifndef OtherUnderscoreEXTRA_P_HPP
  2. #define OtherUnderscoreEXTRA_P_HPP
  3. #include <QObject>
  4. class OtherUnderscoreExtraPrivate : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. OtherUnderscoreExtraPrivate();
  9. ~OtherUnderscoreExtraPrivate();
  10. };
  11. #endif