libB.h 240 B

12345678910111213141516171819202122
  1. #ifndef LIBB_H
  2. #define LIBB_H
  3. #include "libb_export.h"
  4. #include "libA.h"
  5. #include <QObject>
  6. class LIBB_EXPORT LibB : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. explicit LibB(QObject* parent = 0);
  11. int foo();
  12. private:
  13. LibA a;
  14. };
  15. #endif