| 123456789101112131415161718192021 |
- #ifndef LIBB_H
- #define LIBB_H
- #include "libb_export.h"
- #include <QObject>
- #include "libA.h"
- class LIBB_EXPORT LibB : public QObject
- {
- Q_OBJECT
- public:
- explicit LibB(QObject *parent = 0);
- int foo();
- private:
- LibA a;
- };
- #endif
|