OtherUnderscoreSub_p.hpp 231 B

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