OwnDotUnderscore.hpp 329 B

12345678910111213141516171819
  1. #ifndef LOwnDotUnderscore_HPP
  2. #define LOwnDotUnderscore_HPP
  3. #include <QObject>
  4. // Object source comes with a .moc and a _moc include
  5. class OwnDotUnderscorePrivate;
  6. class OwnDotUnderscore : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. OwnDotUnderscore();
  11. ~OwnDotUnderscore();
  12. private:
  13. OwnDotUnderscorePrivate* const d;
  14. };
  15. #endif