IncA.cpp 274 B

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