IncB.cpp 273 B

12345678910111213141516171819
  1. #include "IncB.hpp"
  2. /// @brief Source local QObject
  3. ///
  4. class IncBPrivate : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. IncBPrivate(){};
  9. };
  10. IncB::IncB()
  11. {
  12. IncBPrivate priv;
  13. }
  14. /// AUTOMOC moc_ include on the last line of the file!
  15. #include "IncB.moc"
  16. #include "moc_IncB.cpp"